Hi,
Do you mean FCKEditor?
Well, I've got also some problems with this editor. After every line, FCKEditor puts a <p> tag between the lines. I hate that!
I haven't find a solution but the <p> stuff goes better with the folowing adaption:
Open the file
wb_fckconfig.js in
<wb map>modules/fckeditor/wb_config.
Change the following lines from:
// specify HTML tag used for ENTER and SHIFT+ENTER key
FCKConfig.EnterMode = 'p' ; // allowed tags: p | div | br
FCKConfig.ShiftEnterMode = 'br' ; // allowed tags: p | div | br
to
// specify HTML tag used for ENTER and SHIFT+ENTER key
FCKConfig.EnterMode = 'br' ; // allowed tags: p | div | br
FCKConfig.ShiftEnterMode = 'p' ; // allowed tags: p | div | br
Hitting Enter and Shift+Enter now act different and the <p> tags are gone.
Grtz,
Luc