markdownj
markdownj copied to clipboard
No support for Superscript text
From [email protected] on August 23, 2013 00:55:45
Hi
I have some markdown text that contains Links as well as Superscipts. When I process that markdown through the Markdown4jProcessor it is not handling Superscript. Here is my input Markdown.
INPUT
[Some Text]( http://example.com/ )
This text contains [superscript] text.
OUTPUT
<p><a href=" http://example.com/">Some Text</a></p>
<p>This text contains [superscript] text.</p>
The expected output should be
This text contains superscript text.
I am using markdown4j-2.2.jar on JDK 6.
Please let me know if this could be done using some configuration or Do I need a custom solution
thanks.
Original issue: http://code.google.com/p/markdownj/issues/detail?id=21