diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index fb2e0adbf..6256b33f5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,6 +13,13 @@ import sys, os +# skip raw nodes +from sphinx.writers.text import TextTranslator +from docutils import nodes +def raw(*arg): + raise nodes.SkipNode +TextTranslator.visit_raw = raw + book = os.environ.get('BOOK') # If your extensions are in another directory, add it here. If the directory |
