This is a simple rust crate to parse (somewhat strict) markdown into HTML, and is partly a rustification of Parse-MD.js. Currently it can parse most aspects of markdown.
#
syntax:
```
etc...
- Emphasis works using both underscores (`_`) and asterixis (`*`):
emphasis
also emphasis
strong emphasis
also strong emphasis
- Lists are available through ordered (`1. etc`) or unordered (`- or *`) syntax:
+ This is an unordered List
- As is this
``` - Line breaks are currently unavailable.
markdown.rs
is licensed under the MIT License.