From 9d55ea8a99969fecec213ec9143def30bff3cc52 Mon Sep 17 00:00:00 2001 From: Bryce Willey Date: Fri, 5 Dec 2025 11:33:49 -0500 Subject: [PATCH] Turn 'Example/s' sections into h4s as well Helps them blend in better with the other h4 sections per method. --- fix-doc-titles.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fix-doc-titles.sh b/fix-doc-titles.sh index 39dece3f3..ff26dec77 100755 --- a/fix-doc-titles.sh +++ b/fix-doc-titles.sh @@ -61,6 +61,8 @@ for file in $(find docs/components -name "*.md" -exec grep -l "# Table of Conten sed -i 's/^\*\*Attributes\*\*:/#### Attributes/g' "$file" sed -i 's/^\*\*Notes\*\*:/#### Notes/g' "$file" sed -i 's/^\*\*Raises\*\*:/#### Raises/g' "$file" + sed -i 's/^\*\*Example\*\*:/#### Example/g' "$file" + sed -i 's/^\*\*Examples\*\*:/#### Examples/g' "$file" # Remove stray YAML frontmatter blocks that appear in the middle of files # These are artifacts from the old template processing