Tinkered around with Markdown today, found it quite enjoyable to use. Mostly. Where I found it lacking is when Markdown formatted text is within a div block, what with Markdown not working within block-level tags.
Lookign for a workaround, I discovered [PHP Markdown Extra][1] by Michel Fortin, a script which expands the Markdown syntax to allow one to use Markdown within block-level tags. Is there a way to use that script within TextMate?
[1]:http://www.michelf.com/projects/php-markdown/extra/
For those interested in seeing the problem, I've included the samples below. Pop them into a TextMate document composed in the Markdown langauage. The first will convert as I would like properly, the second, well, not so much.
**Markdown, Working** example ======= [markdown][1] [1]:http://somesite.com/
**Markdown, Not Quite Working** <div> example ======= [markdown][1] [1]:http://somesite.com/ </div>
Regards,
Brooks