我的网站上有一个所见即所得的编辑器。它只创建几个 html 标签(p、br、b、i、strike、img、a)。
我想将所有文本包装在 <p> 标签中,因此没有包装 <p> 将没有文本。
由此:
<p>Some text here. This is ok.</p>
Some text here. This is NOT ok.
<p>Some text here. This is ok.</p>
我想得到这个:
<p>Some text here. This is ok.</p>
<p>Some text here. This is NOW ok.</p>
<p>Some text here. This is ok.</p>
最好的方法是什么?
先感谢您。
编辑:
我想用 PHP 做这个服务器端。