md.rs
md.rs copied to clipboard
A Markdown parser library in Rust
This issue was automatically generated. Feel free to close without ceremony if you do not agree with re-licensing or if it is not possible for other reasons. Respond to @cmr...
after adding crate version `0.0.1` to my crate's cargo.toml deps, I get the following compile error ``` .cargo/registry/src/github.com-1ecc6299db9ec823/md-0.0.1/src/util.rs:4:25: 4:26 error: expected type, found `|` .cargo/registry/src/github.com-1ecc6299db9ec823/md-0.0.1/src/util.rs:4 fn modify(&self, f: |T| ->...
[CommonMark](http://commonmark.org) support would be nice, though I should do basic Markdown parsing first.
Probably borrow test infrastructure or test data from https://github.com/karlcow/markdown-testsuite
Tracking issue for basic Markdown syntax support. - Paragraphs - [x] Single emphasis - [x] Double emphasis - [x] Inline code blocks - [ ] Newlines - Links - [x]...