开发者

disable adding of <p></p> tags in fckeditor

开发者 https://www.devze.com 2023-01-08 18:49 出处:网络
how to disable automatic adding of <p></p> tags in Fckeditor. When i try to get any post data from fckedit开发者_运维百科or, it gives me the data wrapped in

how to disable automatic adding of <p></p> tags in Fckeditor.

When i try to get any post data from fckedit开发者_运维百科or, it gives me the data wrapped in

how do i remove/disable those <p></p>

Thanks in advance for any suggestions and reply


Too late, but will help others reaching this page via search engines, like I found it.

<?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();
?>

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


Adding to the previous answer, If you're using ColdFusion rich text area (which used fckeditor), you can disable the <p> tags by setting EnterMode to br in fckconfig.js

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号