feat(plugins): update tag name to prevent collision with inbuilt tags plugin

!13 nofusscomputing/infrastructure/website!44 nofusscomputing/projects/gitlab-ci!73
This commit is contained in:
2024-02-02 16:46:25 +09:30
parent 1615613ed5
commit 80a748ab98
2 changed files with 4 additions and 4 deletions

View File

@ -4,16 +4,16 @@ Setup the plugin
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
version='0.0.1', version='0.0.2',
python_requires='>=3.6', python_requires='>=3.6',
install_requires=[ install_requires=[
'mkdocs==1.2.3', 'mkdocs>=1.2.3',
], ],
packages=find_packages(exclude=['*.tests']), packages=find_packages(exclude=['*.tests']),
package_data={'tags': ['templates/*.md.template']}, package_data={'tags': ['templates/*.md.template']},
entry_points={ entry_points={
'mkdocs.plugins': [ 'mkdocs.plugins': [
'tags = tags.plugin:TagsPlugin' 'nfc_tags = tags.plugin:TagsPlugin'
] ]
} }
) )

View File

@ -53,7 +53,7 @@ extra_css:
plugins: plugins:
- tags: - nfc_tags:
filename: tags.md filename: tags.md
folder: pages folder: pages
css_name: ".tags" css_name: ".tags"