问题
how to disable automatic adding of <p></p>
tags in Fckeditor.
When i try to get any post data from fckeditor, it gives me the data wrapped in
how do i remove/disable those<p></p>
Thanks in advance for any suggestions and reply
回答1:
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/
回答2:
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
来源:https://stackoverflow.com/questions/3339319/disable-adding-of-p-p-tags-in-fckeditor