0

我目前正在关注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>

这是我可以控制的想要的行为还是解析器有问题?

感谢您的帮助。

4

1 回答 1

1

此问题已由开发人员修复(https://github.com/erusev/parsedown-extra/issues/18),我为它创建了一个拉取请求https://github.com/getkirby/kirby/pull/ 132

于 2014-11-20T10:45:36.803 回答