The problem with writing my own Markdown parser in Clojure is that Markdown is not a well-specified language. There is no "official" grammar, just an informal "Here's how it works" description and a really ugly reference implementation in Perl. http://briancarper.net/blog/415/
I can see Gruber's specification here and the implementation here.
This is an implementation that wins the google ranking test here
Then there is peg-markdown which appears to solve the 'there is no grammar' problem - but is not the canonical implementation.
My question is - what is the canonical implementation of markdown? (The one that everybody says defines the standard).