-
Notifications
You must be signed in to change notification settings - Fork 72
Closed as not planned
Labels
Description
For example, if one wants to enable slugify on content tabs, they cant because the extension is always appended even if already configured in the user's mkdocs.yml
I saw #214 which i think intended to address this issue, but i still cant get configuration to get merged with the default atechdocs one.
mkdocs-techdocs-core/src/core.py
Line 127 in 8bc1e2a
config["markdown_extensions"].append("pymdownx.tabbed") |
Have also tried
plugins:
- techdocs-core
markdown_extensions:
- pymdownx.extra:
pymdownx.tabbed:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
I suspect the issue is that while #214 removed the superfences plugin from the list of appended, it did not remove the others provided by pymdownx.extra
still resulting in impossible configuration for those.