From 464a3c25fa8d957f55f746aed108d3e3c8bf77bd Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Tue, 28 Apr 2026 11:27:33 -0500 Subject: [PATCH] chore: replace deprecated uslugify with configurable slugify(case: lower) --- mkdocs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index c8f501840..ba1b69c83 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -138,7 +138,9 @@ markdown_extensions: alternate_style: true #brandon added this 4/27/25 - allows for content tabs like iphone vs android # use a slugifier so IDs come from your tab titles - slugify: !!python/name:pymdownx.slugs.uslugify + slugify: !!python/object/apply:pymdownx.slugs.slugify + kwds: + case: lower # word separator (defaults to "-") separator: "-" # whether to prefix with the parent header’s slug (optional)