···11# mdbookkit
22-33-
44-55-[](https://crates.io/crates/mdbookkit)
66-[](https://tonywu6.github.io/mdbookkit/)
77-[](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-APACHE.md)
88-99-Quality-of-life plugins for your [mdBook] project.
1010-1111-- [**`mdbook-rustdoc-link`**](https://tonywu6.github.io/mdbookkit/rustdoc-link)
1212-1313- _rustdoc_-style linking for Rust APIs: write types and function names, get links to
1414- _docs.rs_
1515-1616-- [**`mdbook-link-forever`**](https://tonywu6.github.io/mdbookkit/link-forever)
1717-1818- _Permalinks_ for your source tree: write relative paths, get links to GitHub.
1919-2020-## Installation
2121-2222-If you are interested in any of these plugins, visit their respective pages for usage
2323-instructions, linked above.
2424-2525-If you want to install all of them:
2626-2727-```bash
2828-cargo install mdbookkit --all-features
2929-```
3030-3131-Precompiled binaries are also available from [GitHub releases][gh-releases].
3232-3333-## License
3434-3535-This project is released under the
3636-[Apache 2.0 License](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-APACHE.md)
3737-and the [MIT License](https://github.com/tonywu6/mdbookkit/tree/main/LICENSE-MIT.md).
3838-3939-<!-- prettier-ignore-start -->
4040-4141-[`mdbookkit`]: https://crates.io/crates/mdbookkit
4242-[gh-releases]: https://github.com/tonywu6/mdbookkit/releases
4343-[mdBook]: https://rust-lang.github.io/mdBook/
4444-[preprocessors]: https://rust-lang.github.io/mdBook/format/configuration/preprocessors.html
4545-4646-<!-- prettier-ignore-end -->
···11# mdbook-permalinks
2233-Create permalinks to files in your Git repository just by using their paths.
33+Create permalinks to files in your Git repository using paths.
4455Link to source code, examples, configuration files, etc., in your [mdBook]
66documentation, without having to hardcode URLs or worry about broken links. You simply
+2-4
docs/src/permalinks/more-ways-to-link.md
···5050start with a `/` are resolved **relative to the root of your repository**:
51515252> ```md
5353-> The [home page](index.md) simply embeds the package
5454-> [README](/crates/mdbook-permalinks/README.md).
5353+> The [home page](/docs/src/index.md) simply embeds the project [README](/README.md).
5554> ```
5655>
5757-> The [home page](index.md) simply embeds the package
5858-> [README](/crates/mdbook-permalinks/README.md).
5656+> The [home page](/docs/src/index.md) simply embeds the project [README](/README.md).
59576058## Using URLs
6159