解析 PHP 块引用



我正在为一个项目使用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>

而我希望块引用在第二个<br>之后结束,然后将回复作为一个简单的p。文本应该如何,它是否使用换行符而不是中断或其他什么?

你的字符串应该是:

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

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

相关内容

  • 没有找到相关文章

最新更新