Update dependency mdformat-admon to v2.0.6 (#12821)

This commit is contained in:
renovate[bot] 2024-08-12 01:59:14 +00:00 committed by GitHub
parent 71b8bf211f
commit cb364780b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -5,4 +5,4 @@ mkdocs-material @ git+ssh://git@github.com/astral-sh/mkdocs-material-insiders.gi
mkdocs-redirects==1.2.1
mdformat==0.7.17
mdformat-mkdocs==2.0.4
mdformat-admon==2.0.2
mdformat-admon==2.0.6

View file

@ -5,4 +5,4 @@ mkdocs-material==9.1.18
mkdocs-redirects==1.2.1
mdformat==0.7.17
mdformat-mkdocs==2.0.4
mdformat-admon==2.0.2
mdformat-admon==2.0.6

View file

@ -165,7 +165,7 @@ def main() -> None:
# Format rules docs
add_no_escape_text_plugin()
for rule_doc in Path("docs/rules").glob("*.md"):
mdformat.file(rule_doc, extensions=["mkdocs", "admonition", "no-escape-text"])
mdformat.file(rule_doc, extensions=["mkdocs", "admon", "no-escape-text"])
with Path("mkdocs.template.yml").open(encoding="utf8") as fp:
config = yaml.safe_load(fp)