diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-16 18:57:09 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-16 18:57:09 +0200 |
commit | 288735bc2e3eb8a32a93a0d60351f96daa108c51 (patch) | |
tree | ed0ea47a5921be41a2320d34ecf0eb3a566ee507 | |
parent | 9e157f453ae674a9f86601142fde91b85485883a (diff) | |
download | markdown-rs-288735bc2e3eb8a32a93a0d60351f96daa108c51.tar.gz markdown-rs-288735bc2e3eb8a32a93a0d60351f96daa108c51.tar.bz2 markdown-rs-288735bc2e3eb8a32a93a0d60351f96daa108c51.zip |
Add a small intro to the readme
-rw-r--r-- | readme.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,7 +1,10 @@ # micromark-rs -Crate docs are currently at -[`wooorm.com/micromark-rs/micromark/`](https://wooorm.com/micromark-rs/micromark/). +A [CommonMark][] compliant, `no_std` + `alloc`, markdown parser, with extensions, +in Rust. + +Crate docs currently at +[`wooorm.com/micromark-rs/micromark/`][docs]. ## To do @@ -104,3 +107,6 @@ cargo doc --document-private-items ``` (add `--open` to open them in a browser) + +[commonmark]: https://spec.commonmark.org +[docs]: https://wooorm.com/micromark-rs/micromark/ |