在p标签中包装段落

时间:2013-05-08 14:14:10

标签: html

我有一个HTML文档,它对大多数文本都有正确的段落格式但是有些段落不包含p标签,因此无法正确显示。

是否可以使用带正则表达式的文本编辑器将<p> </p>标记包含在段落中?我尝试使用HTML整洁,但我不能让它识别单独的段落或者它以错误的方式重新格式化,我不知道发生了什么......

我需要每个不包含html标签的段落都包含段落:

Template Design Creation for the layout for the content that will exist on each page.

Custom Programing to make certain features work with the design.

Photos of the Location For the Website Design Elements.

喜欢这个

<p>Template Design Creation for the layout for the content that will exist on each page.</p>

<p>Custom Programing to make certain features work with the design.</p>

<p>Photos of the Location For the Website Design Elements.</p>'

2 个答案:

答案 0 :(得分:0)

使用正则表达式:

/($|\n|^)/$1<\/p>\n<p>/g

是最简单的,但它需要在文档的开头清理一个额外的关闭标记,并在结尾处清除额外的开放标记。有可能让它变得完美,但我发现它不值得。

答案 1 :(得分:0)

我同意上面的那个人,只需手动添加它们。如果内容来自服务器上的网页,只需部署一个WYSIWYG编辑器(它们周围的负载),它们应该满足该功能。