1

我正在将Parsedown用于一个项目。引用有问题:

$text = ">here's a quote <br><br> reply to quote";
echo $Parsedown->text($text);

正在输出

<blockquote>
    <p>
        "here's a quote "
        <br>
        <br>
        " reply to quote"
    </p>
</blockquote>

而我希望 blockquote 在第二个之后结束<br>,然后将回复作为一个简单的p. 文本应该如何,它是否使用换行符而不是换行符之类的?

4

1 回答 1

1

你的字符串应该是:

">here's a quote <br><br>

reply to quote"

在这里检查:http: //parsedown.org/demo

于 2016-02-08T17:22:43.677 回答