我现在正在思考http://getkirby.com到目前为止我很高兴。我激活了Kirby附带的Markdown Extra,这样我就可以在div元素中使用Markdown。
这非常有效,直到我需要创建单独的文本段落,比如:
<div class="my-class" markdown="1">
This is the first paragraph
This is the second paragraph
</div>
而不是像这样呈现:
<div class="my-class">
<p>This is the first paragraph</p>
<p>This is the second paragraph</p>
</div>
我得到这个结果:
<div class="my-class">
<p>This is the first paragraph<br />
This is the second paragraph</p>
</div>
这是我可以控制的想要的行为,还是解析器出了问题?
谢谢你在前面的帮助。
此问题已由开发人员修复(https://github.com/erusev/parsedown-extra/issues/18),我已经为它创建了一个拉取请求https://github.com/getkirby/kirby/pull/132