We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c99d4b1 commit 9d7b70fCopy full SHA for 9d7b70f
1 file changed
docs/sphinx/source/conf.py
@@ -394,8 +394,8 @@ def setup(app):
394
# first group + sep := match folders up to filename
395
# negative lookahead + match anything but sep := match filename (if valid)
396
# https://sphinx-gallery.github.io/stable/configuration.html#parsing-and-executing-examples-via-matching-patterns # noqa: E501
397
- # unix: gallery_conf["filename_pattern"] = '^(.*)/(?!noplot_)([^/]*)$'
398
- # windows: gallery_conf["filename_pattern"] = '^(.*)\\\\(?!noplot_)([^\\\\]*)$'
+ # unix: filename_pattern = '^(.*)/(?!noplot_)([^/]*)$'
+ # win: filename_pattern = '^(.*)\\\\(?!noplot_)([^\\\\]*)$'
399
'filename_pattern': rf"^(.*){os_re_sep}(?!noplot_)([^{os_re_sep}]*)$",
400
401
# directory where function/class granular galleries are stored
0 commit comments