You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Some Text
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
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
OUTPUT
The expected output should be
Some Text
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
The text was updated successfully, but these errors were encountered: