Why does WP put pre tags in paragraphs?
-
Let’s say I have a post with a block of code between two paragraphs. Here’s what I see in the editor (WYSIWYG is disabled):
first paragraph text <pre>do shell script</pre> second paragraph text
When I publish the post, it turns to
<p>first paragraph text</p> <p><pre>do shell script</pre></p> <p>second paragraph text</p>
This is bad because XHTML doesn’t allow including PRE (and other block-level elements in P tags.
If I try to remove extra line breaks between paragraphs and code, on the post page I get such markup:<p>first paragraph text<br /> <pre>do shell script</pre><br /> second paragraph text</p>
.. which is not better.
Has anybody faced this issue? Is there a way to make WordPress generate valid markup in such cases without hacking its core files?
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Why does WP put pre tags in paragraphs?’ is closed to new replies.