Haxe-Markdown2 is an unofficial API for the Markdown2 library. It's designed to provide markdown conversion for web applications that don't have Python installed.
POST to http://haxe-markdown2.appspot.com with the markdown parameter in the body.
You'll receive converted HTML back, which you can store for later display on your site.
var result = '';
var http = new Http('http://haxe-markdown2.appspot.com/');
http.setParameter('markdown', md_string);
http.onData = function (data) { result = data; }
http.request(true);
This site was created so that Hocco could run on any computer, but please feel free to use it yourself.
Copyright (c) 2012 Skial Bainn
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.