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:
@ -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'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -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"
|
||||||
|
Reference in New Issue
Block a user