Skip to content

Commit

Permalink
1.0.0-alpha.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Apr 22, 2023
1 parent 8852264 commit 6d8b9a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "markdown"
version = "1.0.0-alpha.7"
version = "1.0.0-alpha.8"
authors = ["Titus Wormer <tituswormer@gmail.com>"]
edition = "2018"
rust-version = "1.56"
Expand Down
18 changes: 9 additions & 9 deletions readme.md
Expand Up @@ -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.7`.
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.8`.
CommonMark compliant markdown parser in Rust with ASTs and extensions.

Expand Down Expand Up @@ -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.7
cargo add markdown@1.0.0-alpha.8
```

> 👉 **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.7`.
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.8`.
## Use

Expand Down Expand Up @@ -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.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),
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.8/markdown/fn.to_html.html),
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.8/markdown/fn.to_html_with_options.html),
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.8/markdown/fn.to_mdast.html),
[`Options`](https://docs.rs/markdown/1.0.0-alpha.8/markdown/struct.Options.html),
and a few other structs and enums.

See the [crate docs][docs] for more info.
Expand Down Expand Up @@ -350,11 +350,11 @@ Special thanks go out to:

[docs-badge]: https://img.shields.io/docsrs/markdown

[docs]: https://docs.rs/markdown/1.0.0-alpha.7/markdown/
[docs]: https://docs.rs/markdown/1.0.0-alpha.8/markdown/

[crate-badge]: https://img.shields.io/crates/v/markdown

[crate]: https://crates.io/crates/markdown/1.0.0-alpha.7
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.8

[chat]: https://github.com/wooorm/markdown-rs/discussions

Expand Down

0 comments on commit 6d8b9a6

Please sign in to comment.