Skip to main content

An MkDocs plugin allowing links to your pages using a custom alias

Project description

mkdocs-alias-plugin

PyPI version License: MIT example workflow Downloads

An MkDocs plugin allowing links to your pages using a custom alias such as [[my-alias]] or [[my-alias|My Title]].

The aliases are configured through the meta-sections of each page (see Usage below).

If you like this plugin, you'll probably also like mkdocs-categories-plugin.

Rationale

I maintain a fairly large wiki and occasionally will restructure parts of it, resulting in many broken links. This plugin allows me to separate the wiki contents from the file system structure and resolves the paths during build time. Maybe this plugin will help you out as well.

Installation

Install the package using pip:

pip install mkdocs-alias-plugin

Then add the following entry to the plugins section of your mkdocs.yml file:

plugins:
  - alias

For further configuration, see the Options section below.

Usage

Add an alias section to your page's meta block:

---
alias: wuthering-heights
---

Then, using the alias in the markdown content of your pages:

The song references [[wuthering-heights]].

Which, after the page builds, renders as a regular link to your page.

Or, a more advanced example by using the dictionary-style configuration instead to provide a different link title.

---
alias:
    name: wuthering-heights
    text: Wuthering Heights, a novel by Emily Brontë
---

If you'd like to supply your own link text instead on a link-by-link basis, you can do so using a pipe to separate the title from the alias:

The song references [[wuthering-heights|Wuthering Heights]].

Please refer to the MkDocs documentation for more information on how the meta-data block is used.

Multiple Aliases

As of version 0.3.0, it is possible to assign multiple aliases to a single page. This does come with the limitation that these aliases cannot define a per-alias title. The syntax for this is:

---
alias:
    - wuthering-heights
    - wuthering
    - wh
---

Escaping Aliases (Escape Syntax)

As of version 0.4.0, it is possible to escape aliases to prevent them being parsed by the plugin. This is useful if you use a similar double-bracket markup for a different purpose (e.g. shell scripts). The syntax for this feature is a leading backslash:

\[[this text will remain untouched]]

[[this text will be parsed as an alias]]

Options

You may customize the plugin by passing options into the plugin's configuration sections in mkdocs.yml:

plugins:
    - alias:
        verbose: true

verbose

You may use the optional verbose option to print more information about which aliases were used and defined during build. The default value is false.

Troubleshooting

The link text looks like a path or URL

Your alias doesn't have link text defined and your page doesn't have a title H1 tag or a title attribute in its meta data section. Once you add this, your link will render with the appropriate text.

My alias is not being replaced

WARNING - Alias 'my-alias' not found

The alias could not be found in the defined aliases, usually due to a typo. Enable verbose output in the plugin's configuration to display all of the found aliases.

However, it is also possible that the plugin is trying to interpret another double-bracketed syntax as an alias. In this case, use the escape syntax to prevent the plugin from parsing it.

"Alias already defined"

You're getting a message resembling this in your output:

WARNING - page-url: alias alias-name already defined in other-url, skipping.

Aliases must be unique. Ensure that you're not redefining the same alias for a different page. Rename one of them and the warning should go away.

Local Development

Installing a localy copy of the plugin:

pip install -e /path/to/mkdocs-alias-plugin/

Running unit tests after installing pytest from the root directory:

pytest -vv

Both unit test and linting:

pylint $(git ls-files '*.py') && pytest -vv

Changelog

0.4.0

2022-07-10

Adds the ability to escape aliases so they won't be parsed by the plugin. Also adds more unit tests.

0.3.0

2022-04-27

Adds the ability to create multiple aliases for a single page (see the documentation for "Multiple Aliases" above). Improves the "alias not found" warning by listing the file attempting to use the alias.

0.2.0

2022-02-23

Allow strings as aliases instead of dictionaries, which allows for the use of page titles in the link text of the alias.

This version also makes the text key optional in the alias dictionary configuration, using the same page title link text instead if it's not provided.

0.1.1

2022-02-12

Fixes a bunch of linter issues, but no new logic.

0.1.0

2022-02-12

Initial release with all of the base logic in place.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkdocs-alias-plugin-0.4.0.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

mkdocs_alias_plugin-0.4.0-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page