以http://kramdown.rubyforge.org/syntax.html#footnotes中的逐字示例为例,我在 IRB 中运行以下命令:
Kramdown::Document.new('This is some text.[^1]. Other text.[^footnote].').to_html
返回:
"<p>This is some text.[^1]. Other text.[^footnote].</p>\n"
这似乎表明默认情况下在 Kramdown 中禁用脚注。如何启用它们?我查看了 [选项文档] ( http://kramdown.rubyforge.org/options.html ),但我没有看到那里列出的启用/禁用脚注的选项。