File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -390,13 +390,13 @@ def setup(app):
390390 'examples_dirs' : ['../../examples' ], # location of gallery scripts
391391 'gallery_dirs' : ['gallery' ], # location of generated output
392392
393- # do not execute gallery examples filenames that begin with NX_
393+ # do not execute gallery examples filenames that begin with noplot_
394394 # first group + sep := match folders up to filename
395395 # negative lookahead + match anything but sep := match filename (if valid)
396396 # https://sphinx-gallery.github.io/stable/configuration.html#parsing-and-executing-examples-via-matching-patterns # noqa: E501
397- # unix: gallery_conf["filename_pattern"] = '^(.*)/(?!NX_ )([^/]*)$'
398- # windows: gallery_conf["filename_pattern"] = '^(.*)\\\\(?!NX_ )([^\\\\]*)$'
399- 'filename_pattern' : rf"^(.*){ os_re_sep } (?!NX_ )([^{ os_re_sep } ]*)$" ,
397+ # unix: gallery_conf["filename_pattern"] = '^(.*)/(?!noplot_ )([^/]*)$'
398+ # windows: gallery_conf["filename_pattern"] = '^(.*)\\\\(?!noplot_ )([^\\\\]*)$'
399+ 'filename_pattern' : rf"^(.*){ os_re_sep } (?!noplot_ )([^{ os_re_sep } ]*)$" ,
400400
401401 # directory where function/class granular galleries are stored
402402 'backreferences_dir' : 'reference/generated/gallery_backreferences' ,
You can’t perform that action at this time.
0 commit comments