Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/octoprint/mkdocs-site-urls
A MkDocs plugin that adds support for site-relative `site:` URLs.
https://github.com/octoprint/mkdocs-site-urls
mkdocs mkdocs-plugin mkdocs-plugins
Last synced: about 1 month ago
JSON representation
A MkDocs plugin that adds support for site-relative `site:` URLs.
- Host: GitHub
- URL: https://github.com/octoprint/mkdocs-site-urls
- Owner: OctoPrint
- License: mit
- Created: 2023-07-28T11:55:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-31T09:20:53.000Z (over 1 year ago)
- Last Synced: 2024-10-08T01:07:58.501Z (3 months ago)
- Topics: mkdocs, mkdocs-plugin, mkdocs-plugins
- Language: Python
- Homepage: https://octoprint.github.io/mkdocs-site-urls/
- Size: 21.5 KB
- Stars: 15
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MkDocs Site URLs Plugin
![GitHub release](https://img.shields.io/github/v/release/OctoPrint/mkdocs-site-urls?logo=github&logoColor=white)
![PyPI](https://img.shields.io/pypi/v/mkdocs-site-urls?logo=python&logoColor=white)
![Build status](https://img.shields.io/github/actions/workflow/status/OctoPrint/mkdocs-site-urls/build.yml?branch=main)
[![Code of Conduct](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](https://octoprint.org/conduct/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1)](https://pycqa.github.io/isort/)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)A MkDocs plugin that adds support for site-relative `site:` URLs.
Example:
| URL | site_url | resulting URL |
| --- | -------- | ------------- |
| `site:images/foo.png` | `https://example.com/` | `/images/foo.png` |
| `site:images/foo.png` | `https://example.com/bar/` | `/bar/images/foo.png` |**Please note**: This plugin requires MkDocs 1.5 or higher.
## Getting Started
1. Install the plugin from PyPI
```bash
pip install mkdocs-site-urls
```
2. Add the `site-urls` plugin to your `mkdocs.yml` plugins section:
```yaml
plugins:
- site-urls
```
3. Start using site-relative URLs in your Markdown files by prefixing them with `site:`:
```markdown
[Link to another page](site:another-page/relative/to/the/site/root)![Image](site:images/foo.png)
```## Configuration
By default the plugin will replace URLs in `href`, `src` and `data` attributes. You can configure the attributes to replace
by setting the `attributes` option in your `mkdocs.yml`, e.g.:```yaml
plugins:
- site-urls:
attributes:
- href
- src
- data
- data-url
```Be advised that in case of any customization on your part you need to include the default attributes as well if you want
to keep them, as the default list will not be included automatically anymore.## How it works
The plugin hooks into the [`on_page_content` event](https://www.mkdocs.org/dev-guide/plugins/#on_page_content)
and replaces all URLs in the configured attributes (by default `href`, `src` or `data`) in the rendered HTML with the corresponding site-relative URLs.## License
This project is licensed under the MIT license, see the [LICENSE](https://github.com/OctoPrint/mkdocs-site-urls/blob/main/LICENSE) file for details.