Hello,
I'm configuring ckeditor on my website and i'd like to be able to paste text from anywhere as plain text and add a <p> tag around the pasted text.
For example, i f i copy :
hello, my name is Ghislain
i'd like to have :
<p> hello, my name is Ghislain</p>
Currently, i setted up the ckeditor like this :
config.enterMode = CKEDITOR.ENTER_BR;
config.pasteFromWordPromptCleanup = true;
config.pasteFromWordRemoveFontStyles = true;
config.forcePasteAsPlainText = true;
config.ignoreEmptyParagraph = true;
config.removeFormatAttributes = true;
Is there a way to achieve what i want ?
Thanks a lot for your help !