I have these settings in fckconfig.js
...
...
FCKConfig.EnterMode = 'br' ;
FCKConfig.ShiftEnterMode = 'br' ;
....
....
FCKConfig.FontFormats = 'p;h1;h2;h3;h4;h5;h6' ;
Okay, the reason that I have p in FontFormats above was that without it I was unable to
mark a H1 text and make it normal.
If the p is in FontFormats string then "Normal" is shown in the select and I can make H1 text normal again.
My problem is that it inserts P tags.
I do not want any P tags.
How can I show Normal in the select and make it just remove the H1 tags and not add any other tags?
Anybody that can help me out here?
...
...
FCKConfig.EnterMode = 'br' ;
FCKConfig.ShiftEnterMode = 'br' ;
....
....
FCKConfig.FontFormats = 'p;h1;h2;h3;h4;h5;h6' ;
Okay, the reason that I have p in FontFormats above was that without it I was unable to
mark a H1 text and make it normal.
If the p is in FontFormats string then "Normal" is shown in the select and I can make H1 text normal again.
My problem is that it inserts P tags.
I do not want any P tags.
How can I show Normal in the select and make it just remove the H1 tags and not add any other tags?
Anybody that can help me out here?