markdownj icon indicating copy to clipboard operation
markdownj copied to clipboard

No support for Superscript text

Open myabc opened this issue 12 years ago • 0 comments

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

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

myabc avatar Nov 18 '13 21:11 myabc