Skip to content

Commit b232eb9

Browse files
committed
Preparation for v0.10.0
1 parent 00a5df0 commit b232eb9

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ build/
44
__pycache__/
55
.pytest_cache/
66
*.egg-info/
7+
.vscode/
8+
.DS_Store

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ As of version 0.9.0, you may also use `aliases` in addition to (or in place of)
8181

8282
Please refer to the [MkDocs documentation](https://www.mkdocs.org/user-guide/writing-your-docs/#yaml-style-meta-data) for more information on how the meta-data block is used.
8383

84+
As of version 0.10.0, you may use a specialized version of the alias syntax for aliases in footnotes:
85+
86+
```markdown
87+
The plugin [`mkdocs-alias-plugin`][alias-plugin] is awesome!
88+
89+
[alias-plugin]: https://github.com/EddyLuten/mkdocs-alias-plugin
90+
```
91+
8492
### Multiple Aliases
8593
8694
As of version 0.3.0, assigning multiple aliases to a single page is possible. This feature does come with the limitation that these aliases cannot define a per-alias title and instead will use the page title. The syntax for this is:
@@ -181,6 +189,12 @@ pylint $(git ls-files '*.py') && pytest -vv
181189

182190
## Changelog
183191

192+
## 0.10.0
193+
194+
2026-01-07
195+
196+
Adds the ability to use aliases in footnotes. Thank you @joapuiib for your [contribution](https://github.com/EddyLuten/mkdocs-alias-plugin/pull/22)!
197+
184198
## 0.9.0
185199

186200
2025-02-21

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='mkdocs-alias-plugin',
10-
version='0.9.0',
10+
version='0.10.0',
1111
description=
1212
'An MkDocs plugin allowing links to your pages using a custom alias',
1313
long_description=long_description,

0 commit comments

Comments
 (0)