|
ticket id 000032 |
status closed |
priority ??? |
assigned to Waylan |
Reported by: waylan Component: |
When inline raw html is the first item on the first line of a paragraph, it is broken off into a separate paragraph, even if other text is on that same line.
>>> markdown.markdown('<sup>foo</sup> bar')
u'<p><sup>foo</sup></p>\n<p>bar</p>'
That should be <p><sup>foo</sup> bar</p>. Compare with:
>>> markdown.markdown('baz <sup>foo</sup> bar')
u'<p>baz <sup>foo</sup> bar</p>'
Resolution
fixed