Post Notification Inline Image Layout
-
With the Post Notification email, if I have an image in an
<ol><li><img>
the resulting template will remove the image from the ordered list and start a new ordered list. This results in incorrect numbering.So if my post has something along the following:
Paragraph Text <ol> <li><img class="alignright">First Bullet</li> <!-- 1. --> <li>Second Bullet</li> <!-- 2. --> </ol>
A simplified version of the HTML generated looks something like:
Paragraph Text <ol> <li><img></li> <!-- 1. --> </ol> <ol> <li>First Bullet</li> <!-- 1. --> <li>Second Bullet</li> <!-- 2. --> </ol>
So instead of having the two number ones, I would expect that it would be closer to what appears in WordPress. For the time being, the list items will appear correctly as long as we do not have images in them.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Post Notification Inline Image Layout’ is closed to new replies.