1

这是来自我的撬控制台:

> input = <<-HEREDOC
* # Header 1
* ## Header 2
*
* ```
* def hello
*   puts "hello world"
* end
* ```
* HEREDOC
=> "# Header 1\n## Header 2\n\n```\ndef hello\n  puts \"hello world\"\nend\n```\n"
> Kramdown::Document.new(input, input: "GFM", syntax_highlighter: "rouge").to_html
=> "<h1 id=\"header-1\">Header 1</h1>\n<h2 id=\"header-2\">Header 2</h2>\n\n<div class=\"highlighter-rouge\">def hello\n  puts \"hello world\"\nend\n</div>\n"

如您所见,为代码块生成的 html 不包含任何<pre>代码包装器。但是,如果我删除了rougeoption 并使用coderay,它会很好地工作。

> Kramdown::Document.new(input, input: "GFM").to_html
=> "<h1 id=\"header-1\">Header 1</h1>\n<h2 id=\"header-2\">Header 2</h2>\n\n<pre><code>def hello\n  puts \"hello world\"\nend\n</code></pre>\n"

知道有什么问题吗?提前致谢。

4

1 回答 1

0

这是因为rougegem版本。我需要将其更改为 < v2.0.0。现在我正在使用:

  • kramdown v1.13.1
  • 胭脂 v1.11.1
于 2016-11-27T00:26:43.333 回答