Skip to content

Commit

Permalink
Merge pull request #59 from jugmac00/exclude-cheatsheets-from-building
Browse files Browse the repository at this point in the history
Exclude cheatsheets from sphinx build
  • Loading branch information
Peter Matulis authored Jul 17, 2023
2 parents 5afe29d + 9fdb69d commit 9be6f85
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .wokeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# the cheat sheets contain a link to a link with a block word which we cannot
# avoid for now, ie
# https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html
doc-cheat-sheet*
8 changes: 7 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@
### General configuration
############################################################

exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.sphinx']
exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
'.sphinx',
'doc-cheat-sheet*',
]
exclude_patterns.extend(custom_excludes)

rst_epilog = '''
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9be6f85

Please sign in to comment.