This, I think, is the opposite problem of what I've been able to find about FCKEditor, inside or outside of Drupal. I've installed the FCKEditor module and v. 2.6.5 of FCKEditor, and all is basically well. The problem is this: When I go into a page where the editor is active, I enter some text with blank lines between the "paragraphs". When I switch the editor to plain text mode to see the HTML, the "paragraphs" are wrapped up in P tags. However, when I submit the page, the resulting text is wrapped up in a single pair of P tags, with BRs between the lines.

I've checked the value of FCKConfig.EnterMode, which is usually talked about in these matters, and it's set to "p". So I'm confused. Why am I losing the P tags, and how can I get them back?

Comments

vm’s picture

what input format is in use?
is the line break filter enabled on the input format in use?
have you tested w/ and w/out?

jim_at_miramontes’s picture

I'm using the standard "Filtered HTML" format. The line break filter is turned on; when I turn it off, I get all the text wrapped up in a single P tag (although, in the plain text editor view, each paragraph is still in its own P tag.

vm’s picture

is the p tag an allowed tag in your input format?

jim_at_miramontes’s picture

Duh -- EXACTLY RIGHT! I added P to the filter, and all's well.

Thanks very much!