0

我在 Octopress 中使用 kramdown 有一段时间了。我想将 CodeRay 添加到我的 Octopress 中。我安装了coderay。

➜  octopress git:(source) ✗ sudo gem install coderay
Password:
Successfully installed coderay-1.0.9
1 gem installed
Installing ri documentation for coderay-1.0.9...
Installing RDoc documentation for coderay-1.0.9...

我改变了_config.yml

markdown: kramdown
kramdown:
  use_coderay: true
  coderay:
    coderay_line_numbers: table
    coderay_css: class

我添加了 sass/custom/_coderay-github.scss,我可以在我的 CSS 中看到它们。

我使用了以下内容,但没有一个将标签添加到我的 html 中,因此它不会呈现 CodeRay css。

~~~
def hello
  puts "hello world"
end
~~~
{:lang="ruby"}

缩进:

    puts "hello world"
{:lang="ruby"}

谁能告诉我如何将 CodeRay 添加到我的 Octopress 中?

我正在关注这篇文章

先感谢您。

4

1 回答 1

0

好的,我在这个页面找到了答案。

~~~
def what?
  42
end
~~~
{:.language-ruby}

或者

~~~ ruby
def what?
  42
end
~~~
于 2013-07-06T23:13:52.777 回答