Quote:
Originally Posted by ernand
I don't really understand the formatting. I was just following these instructions: https://jadislefeu.dreamwidth.org/7810.html
But would replacing the ,<br />,comments,<br />, formatting by surrounding each entry with ,<p>comments</p>, instead work as I think it does?
|
You can't nest <p> tags inside <p> tags. You'd have to use </p><p>...</p><p> instead.
Code:
<p>This is a test line with a<br/>inside it</p>
<p>This is a test line with a</p>
<p>inside it</p>