Skip to content

Commit 4bb514a

Browse files
committed
fix(docs): exclude single underscore symbols from mkdocstrings
Add filter pattern to prevent single underscore symbols from appearing in generated documentation. This cleans up documentation output by excluding internal placeholder symbols.
1 parent 80f2362 commit 4bb514a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

template/.config/copier/mkdocs.yaml.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ plugins:
138138
filters:
139139
- "!__all__"
140140
- "!^_[^_]"
141+
- "!^_$"
141142
summary: true
142143
# Docstrings
143144
docstring_style: google

0 commit comments

Comments
 (0)