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>コード ラッパーが含まれていません。rougeしかし、オプションを削除して を使用する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