The Markdown extension seems to do nonsense, at least since version 1.10 (which is the oldest version that I could test with Symphony 2.3.6).
Using the Markdown formatter and the following input:
<p>Hello</p>
<p>Michael</p>
<p>E.</p>
I get this result:
<p>Hello</p>
<p><p>Michael</p>
<p>E.</p></p>
Using Markdown (With HTML Purifier) and the same input get the following result:
<p>Hello</p>
<p></p><p>Michael</p>
<p>E.</p>
Both is terribly wrong. Markdown shouldn't touch valid HTML.
How can this be?
The Markdown extension seems to do nonsense, at least since version 1.10 (which is the oldest version that I could test with Symphony 2.3.6).
Using the
Markdownformatter and the following input:I get this result:
Using
Markdown (With HTML Purifier)and the same input get the following result:Both is terribly wrong. Markdown shouldn't touch valid HTML.
How can this be?