| Crates.io | Markdown-to-HTML-rs |
| lib.rs | Markdown-to-HTML-rs |
| version | 0.1.0 |
| created_at | 2019-01-27 16:38:52.855205+00 |
| updated_at | 2019-01-27 16:38:52.855205+00 |
| description | A simple Markdown->HTML parser. |
| homepage | https://github.com/Baidicoot/markdown-rs |
| repository | https://github.com/Baidicoot/markdown-rs |
| max_upload_size | |
| id | 110951 |
| size | 8,259 |
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:# H1
## H2
etc...
_) and asterixis (*):*emphasis*
_also emphasis_
**strong emphasis**
__also strong emphasis__
1. etc) or unordered (- or *) syntax:+ This is an unordered List
- As is this
1. But this isn't
2. This is ordered
NB. List nesting is unsupported.
###
===
---
markdown.rs is licensed under the MIT License.