Skip to content

Commit dcf8a63

Browse files
committed
1.0.0-alpha.23
1 parent 137d3c2 commit dcf8a63

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ license = "MIT"
3838
name = "markdown"
3939
repository = "https://github.com/wooorm/markdown-rs"
4040
rust-version = "1.56"
41-
version = "1.0.0-alpha.22"
41+
version = "1.0.0-alpha.23"
4242

4343
[workspace]
4444
members = ["generate", "mdast_util_to_markdown"]

mdast_util_to_markdown/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[dependencies]
2-
markdown = { path = "../", version = "1.0.0-alpha.22" }
2+
markdown = { path = "../", version = "1.0.0-alpha.23" }
33
regex = { version = "1" }
44

55
[dev-dependencies]

readme.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
> 👉 **Note**: this is a new crate that reuses an old name.
1818
> The old crate (`0.3.0` and lower) has a bunch of problems.
19-
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.22`.
19+
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.23`.
2020
2121
CommonMark compliant markdown parser in Rust with ASTs and extensions.
2222

@@ -83,12 +83,12 @@ P.S. if you want to *compile* MDX, use [`mdxjs-rs`][mdxjs-rs].
8383
With [Rust][] (rust edition 2018+, ±version 1.56+), install with `cargo`:
8484

8585
```sh
86-
cargo add markdown@1.0.0-alpha.22
86+
cargo add markdown@1.0.0-alpha.23
8787
```
8888

8989
> 👉 **Note**: this is a new crate that reuses an old name.
9090
> The old crate (`0.3.0` and lower) has a bunch of problems.
91-
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.22`.
91+
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.23`.
9292
9393
## Use
9494

@@ -154,10 +154,10 @@ Root { children: [Heading { children: [Text { value: "Hey, ", position: Some(1:3
154154
## API
155155

156156
`markdown-rs` exposes
157-
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.22/markdown/fn.to_html.html),
158-
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.22/markdown/fn.to_html_with_options.html),
159-
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.22/markdown/fn.to_mdast.html),
160-
[`Options`](https://docs.rs/markdown/1.0.0-alpha.22/markdown/struct.Options.html),
157+
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_html.html),
158+
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_html_with_options.html),
159+
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_mdast.html),
160+
[`Options`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/struct.Options.html),
161161
and a few other structs and enums.
162162

163163
See the [crate docs][docs] for more info.
@@ -369,11 +369,11 @@ Special thanks go out to:
369369

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

372-
[docs]: https://docs.rs/markdown/1.0.0-alpha.22/markdown/
372+
[docs]: https://docs.rs/markdown/1.0.0-alpha.23/markdown/
373373

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

376-
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.22
376+
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.23
377377

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

@@ -423,4 +423,4 @@ Special thanks go out to:
423423

424424
[coc]: .github/code-of-conduct.md
425425

426-
[whatwg-html-image]: https://html.spec.whatwg.org/multipage/images.html#images-processing-model
426+
[whatwg-html-image]: https://html.spec.whatwg.org/multipage/images.html#images-processing-model

0 commit comments

Comments
 (0)