diff options
author | Titus Wormer <tituswormer@gmail.com> | 2023-02-10 12:58:46 +0100 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2023-02-10 13:00:14 +0100 |
commit | c1390083a74b17931c4ce99af00acb398e07128c (patch) | |
tree | 027527a25d1773a32ef4fa3d13211d4cd7ec9bb9 | |
parent | 905b62583be73a8969014dbb98b6fd1c92c23df6 (diff) | |
download | markdown-rs-c1390083a74b17931c4ce99af00acb398e07128c.tar.gz markdown-rs-c1390083a74b17931c4ce99af00acb398e07128c.tar.bz2 markdown-rs-c1390083a74b17931c4ce99af00acb398e07128c.zip |
1.0.0-alpha.7
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | readme.md | 18 |
2 files changed, 10 insertions, 10 deletions
@@ -1,6 +1,6 @@ [package] name = "markdown" -version = "1.0.0-alpha.6" +version = "1.0.0-alpha.7" authors = ["Titus Wormer <tituswormer@gmail.com>"] edition = "2018" rust-version = "1.56" @@ -16,7 +16,7 @@ > 👉 **Note**: this is a new crate that reuses an old name. > The old crate (`0.3.0` and lower) has a bunch of problems. -> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.6`. +> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.7`. CommonMark compliant markdown parser in Rust with ASTs and extensions. @@ -80,12 +80,12 @@ This Rust crate has a sibling project in JavaScript: [`micromark`][micromark] With [Rust][] (rust edition 2018+, ±version 1.56+), install with `cargo`: ```sh -cargo add markdown@1.0.0-alpha.6 +cargo add markdown@1.0.0-alpha.7 ``` > 👉 **Note**: this is a new crate that reuses an old name. > The old crate (`0.3.0` and lower) has a bunch of problems. -> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.6`. +> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.7`. ## Use @@ -151,10 +151,10 @@ Root { children: [Heading { children: [Text { value: "Hey, ", position: Some(1:3 ## API `markdown-rs` exposes -[`to_html`](https://docs.rs/markdown/1.0.0-alpha.6/markdown/fn.to_html.html), -[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.6/markdown/fn.to_html_with_options.html), -[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.6/markdown/fn.to_mdast.html), -[`Options`](https://docs.rs/markdown/1.0.0-alpha.6/markdown/struct.Options.html), +[`to_html`](https://docs.rs/markdown/1.0.0-alpha.7/markdown/fn.to_html.html), +[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.7/markdown/fn.to_html_with_options.html), +[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.7/markdown/fn.to_mdast.html), +[`Options`](https://docs.rs/markdown/1.0.0-alpha.7/markdown/struct.Options.html), and a few other structs and enums. See the [crate docs][docs] for more info. @@ -348,11 +348,11 @@ Special thanks go out to: [docs-badge]: https://img.shields.io/docsrs/markdown -[docs]: https://docs.rs/markdown/1.0.0-alpha.6/markdown/ +[docs]: https://docs.rs/markdown/1.0.0-alpha.7/markdown/ [crate-badge]: https://img.shields.io/crates/v/markdown -[crate]: https://crates.io/crates/markdown/1.0.0-alpha.6 +[crate]: https://crates.io/crates/markdown/1.0.0-alpha.7 [chat]: https://github.com/wooorm/markdown-rs/discussions |