Nested paragraphs suppress numbers/bullets in lists
When an item in a ordered or unordered list have contents wrapped in a paragraph tag, the xhtml2pdf output displays those items without numbers/bullets in the output. Below is an example reproducing the issue, where the first item displays with a number, and the second (which has contents wrapped in a paragraph tag) does not:
<!DOCTYPE html>
<html>
<body>
<ol>
<li>Numbered item with no paragraph tag</li>
<li><p>Item with paragraph tag has no number</p></li>
</ol>
</body>
</html>
Are there any work-arounds to this issue? FWIW, the content is wrapped in a paragraph tag by the rich-text editor that we're using (CKEditor).
Good Morning!
I had a similar problem. In my case I needed to convert a field that has tags and format properly.
Example:
The solution very simple.

Still an issue, any ideas?
This is still problematic. Would be great to get some pointers