class Markdown
- Markdown
- Reference
- Object
Overview
Markdown library parses Markdown text. It supports rendering to HTML text.
Usage:
require "markdown"
text = "## This is title \n This is a [link](http://crystal-lang.org)"
Markdown.to_html(text)
# => <h2>This is title</h2>
# => <p>This is a <a href="http://crystal-lang.org">link</a></p>
NOTE This library is in its early stage. Many features are still in development.