views:

37

answers:

1

I'm using the Markdown library for PHP by Michel Fortin. I started noticing that it formats the text in tags with markdown rules, like so:

http://foo.com/My_Url_With_Underscores

essentially becomes:

<a href="...">http://foo.com/My&lt;em&gt;Url&lt;/em&gt;With_Underscores&lt;/a&gt;

How do I disable that behavior or otherwise prevent the library from doing that?

+1  A: 

That looks like a bug. Have you tried contacting Michel Fortin?

Scott Reynen