禁用在fckeditor中添加<p> </p>标记

时间:2010-07-26 22:00:27

标签: fckeditor

如何在Fckeditor中禁用自动添加<p></p>标记。

当我尝试从fckeditor获取任何帖子数据时,它会给我包含的数据

如何删除/禁用<p></p>

提前感谢您的任何建议和回复

2 个答案:

答案 0 :(得分:6)

太晚了,但会帮助其他人通过搜索引擎访问此页面,就像我发现的那样。

<?php
include_once('fckeditor/fckeditor.php');
$oFCKeditor = new FCKeditor('description');
$oFCKeditor->BasePath = '/fckeditor/';
$oFCKeditor->Value = 'some text';
$oFCKeditor->Config['EnterMode'] = 'br'; // turn off auto <p> tags wrapping content
$oFCKeditor->Create();
?>

参考http://www.tequilafish.com/2008/09/12/fckeditor-remove-p-tags-from-wrapping-your-content/

答案 1 :(得分:0)

添加到上一个答案,如果您正在使用ColdFusion富文本区域(使用fckeditor),则可以通过在{{中将<p>设置为EnterMode来停用br标记1}}