\
A Grails plugin to provide tag library and service support for markdown. It can be used both for converting markdown into HTML, as well as converting HTML back into markdown.
You can either use the body of the tag to hold the markdown:
<markdown:renderHtml>This is a *test* of markdown.</markdown:renderHtml>
renders:
<p>This is a <em>test</em> of markdown.</p>
Or the "text" attribute:
<markdown:renderHtml text="Yet **another** markdown test."/>
renders:
<p>Yet <strong>another</strong> ...
