A port of the [`commonmark.js`](https://github.com/commonmark/commonmark.js/) Markdown
parser and renderer from JavaScript to Ceylon. Some parts have been made more ceylonic, for
convenience, but the overall structure of the code still resembles the original JavaScript, to
make incorporating upstream changes easier.
## Usage
Similarly to `commonmark.js`, parsing and rendering are performed in separate steps:
``` ceylon
value root = Parser().parse("## Hello World!");
```
The parse operation ...
