Quote:
Originally Posted by AlisaC
I'm having the same problem, and I didn't understand what you asked Corey Langner to do. What do you mean by "content outside html tags"? I've seen multiple questions about this and the answers are all so technical, I'm like, yeah, whatever. Maybe I'll click "no toc" ...
Thanks -- Alisa
|
Please follow Walt's advice (in the future, as this thread is now near the top of the list for now).
In (x)HTML code: there are
naked words that are not
wrapped in the proper HTML tags.
Code:
<blockquote> <p>words to show.</p></blockquote>
Blockquote expects a inner set of tags
<br /> must be inside a tag pair, not outside of it .
Mis-matched pairs are a No No <p> ... </P>
or
Code:
<p><b>not bold done right</p></b>
Conversion from one form to another is not always
problem free. 95% it will run fine.
The other 4.9% you need to help it along

.01% of the time