|
|
Also, if special formatting tags such as a table or lists are inserted, then the remaining text must be inside a paragraph tag. This means that the following is wrong:
<descr> Some beginning text <ol> <li>A list item</li> </ol> some ending text </descr> |
<descr> <p>Some beginning text</p> <ol> <li>A list item</li> </ol> <p>some ending text</p> </descr> |