toolkit for mdBook [mirror of my GitHub repo] docs.tonywu.dev/mdbookkit/
permalinks rust-analyzer mdbook
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix issues with crates.io README (#9)

authored by

tonywu6 and committed by
GitHub
ff13ca3b a72594c5

+64 -57
+1
.gitattributes
··· 3 3 *.pxd binary 4 4 5 5 .prettierrc.* -linguist-detectable 6 + .stylelintrc.* -linguist-detectable
+1 -1
Cargo.lock
··· 1592 1592 1593 1593 [[package]] 1594 1594 name = "mdbookkit" 1595 - version = "1.0.0" 1595 + version = "1.0.1" 1596 1596 dependencies = [ 1597 1597 "anyhow", 1598 1598 "assert_cmd",
+1 -1
README.md
··· 5 5 Quality-of-life plugins for your [mdBook] project. 6 6 7 7 [![crates.io](https://img.shields.io/crates/v/mdbookkit?style=flat-square)](https://crates.io/crates/mdbookkit) 8 - [![documentation](https://img.shields.io/github/actions/workflow/status/tonywu6/mdbookkit/docs.yml?branch=main&event=release&style=flat-square&label=docs)](https://docs.rs/mdbookkit) 8 + [![documentation](https://img.shields.io/github/actions/workflow/status/tonywu6/mdbookkit/docs.yml?event=release&style=flat-square&label=docs)](https://docs.rs/mdbookkit) 9 9 [![MIT/Apache-2.0 licensed](https://img.shields.io/crates/l/mdbookkit?style=flat-square)](/LICENSE-APACHE.md) 10 10 11 11 ## [Read the book](https://tonywu6.github.io/mdbookkit/)
+5 -1
crates/mdbookkit/CHANGELOG.md
··· 7 7 8 8 ## Unreleased 9 9 10 - > Unreleased changes appear here, if any. 10 + ## [1.0.1](https://tonywu6.github.com/tonywu6/mdbookkit/compare/mdbookkit-v1.0.0...mdbookkit-v1.0.1) - 2025-04-08 11 + 12 + ### Other 13 + 14 + - fix issues with crates.io README 11 15 12 16 ## [1.0.0](https://tonywu6.github.com/tonywu6/mdbookkit/releases/tag/mdbookkit-v1.0.0) - 2025-04-08 13 17
+1 -1
crates/mdbookkit/Cargo.toml
··· 1 1 [package] 2 2 name = "mdbookkit" 3 3 publish = true 4 - version = "1.0.0" 4 + version = "1.0.1" 5 5 6 6 edition.workspace = true 7 7 rust-version.workspace = true
+6 -5
crates/mdbookkit/README.md
··· 1 1 # mdbookkit 2 2 3 - ![mdbookkit hero image](/docs/src/media/banner.webp) 3 + ![mdbookkit hero image](https://github.com/tonywu6/mdbookkit/raw/main/docs/src/media/banner.webp) 4 4 5 5 [![crates.io](https://img.shields.io/crates/v/mdbookkit?style=flat-square)](https://crates.io/crates/mdbookkit) 6 - [![documentation](https://img.shields.io/github/actions/workflow/status/tonywu6/mdbookkit/docs.yml?branch=main&event=release&style=flat-square&label=docs)](https://docs.rs/mdbookkit) 7 - [![MIT/Apache-2.0 licensed](https://img.shields.io/crates/l/mdbookkit?style=flat-square)](/LICENSE-APACHE.md) 6 + [![documentation](https://img.shields.io/github/actions/workflow/status/tonywu6/mdbookkit/docs.yml?event=release&style=flat-square&label=docs)](https://docs.rs/mdbookkit) 7 + [![MIT/Apache-2.0 licensed](https://img.shields.io/crates/l/mdbookkit?style=flat-square)](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-APACHE.md) 8 8 9 9 Quality-of-life plugins for your [mdBook] project. 10 10 ··· 32 32 33 33 ## License 34 34 35 - This project is released under the [Apache 2.0 License](/LICENSE-APACHE.md) and the 36 - [MIT License](/LICENSE-MIT.md). 35 + This project is released under the 36 + [Apache 2.0 License](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-APACHE.md) 37 + and the [MIT License](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-MIT.md). 37 38 38 39 <!-- prettier-ignore-start --> 39 40
-2
release-plz.toml
··· 14 14 15 15 ## Unreleased 16 16 17 - > Unreleased changes appear here, if any. 18 - 19 17 """
+14 -8
utils/mdbook-socials/src/main.rs
··· 209 209 Ok(()) 210 210 } 211 211 212 - static OPEN_GRAPH: &str = r#" 213 - <meta property="og:type" content="article"> 214 - <meta property="og:title" content="{{ og_title }}"> 215 - <meta property="og:url" content="{{ og_url }}"> 216 - <meta property="og:image" content="{{ og_image }}"> 217 - <meta property="og:description" content="{{ og_description }}"> 218 - <meta property="og:site_name" content="{{ og_site_name }}"> 219 - "#; 212 + static OPEN_GRAPH: &str = r##" 213 + <meta property="og:type" content="article"> 214 + <meta property="og:title" content="{{ og_title }}"> 215 + <meta property="og:url" content="{{ og_url }}"> 216 + <meta property="og:image" content="{{ og_image }}"> 217 + <meta property="og:description" content="{{ og_description }}"> 218 + <meta property="og:site_name" content="{{ og_site_name }}"> 219 + <meta name="twitter:card" content="summary_large_image"> 220 + <meta name="twitter:title" content="{{ og_title }}"> 221 + <meta name="twitter:image" content="{{ og_image }}"> 222 + <meta name="twitter:image:alt" content="toolkit for mdbook"> 223 + <meta name="twitter:description" content="{{ og_description }}"> 224 + <meta name="theme-color" content="#d2a6ff"> 225 + "##; 220 226 221 227 #[derive(Parser)] 222 228 struct Program {