我目前正在关注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>
这是我可以控制的想要的行为还是解析器有问题?
感谢您的帮助。