Skip to content

Instantly share code, notes, and snippets.

@udzura
Created December 24, 2014 05:12
Show Gist options
  • Save udzura/dccf796cc7bfae7c766e to your computer and use it in GitHub Desktop.
Save udzura/dccf796cc7bfae7c766e to your computer and use it in GitHub Desktop.
md2html.rb sample
m = Discount.new("http://kevinburke.bitbucket.org/markdowncss/markdown.css", "titlehoge")
markdown = '
# title
title
## subtitle
- This page is
- **created**
- by _mruby_
'
Apache::echo m.header
Apache::echo markdown.to_html
# or puts m.md2html(markdown)
Apache::echo m.md2html("## subtitle2")
Apache::echo m.md2html("- foo")
Apache::echo m.footer
Apache.return(Apache::OK)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment