Render an arbitrary Markdown document POST /markdown Input text Required $ curl -d '{ "text":"**cool**" }' http://gfm-kyanny.sqale.jp/markdown Response <p><strong>cool</strong></p> Render a Markdown document in raw mode POST /markdown/raw Input POSTDATA Required $ curl -d '**cool**' http://gfm-kyanny.sqale.jp/markdown/raw Response <p><strong>cool</strong></p> Demo $.ajax({ "type":"POST", "url":"ht