diff options
author | Georg Brandl <georg@python.org> | 2009-07-03 13:34:08 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-03 13:34:08 +0200 |
commit | c8e8b1bfd4d76f13b51cd86b48cb32ccbe7559e0 (patch) | |
tree | 6d2a736922487d83b6a850e26a190e2ada1e9933 /sphinx/config.py | |
parent | 1f18db60a49e0fc6552bcfd11fe4b2be5153c68a (diff) | |
download | sphinx-git-c8e8b1bfd4d76f13b51cd86b48cb32ccbe7559e0.tar.gz |
Use a new "lazy" gettext function instead of using dummy _() to help text extraction.
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index 912f3eb2e..dbe569fb7 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -113,6 +113,10 @@ class Config(object): latex_docclass = ({}, None), # now deprecated - use latex_elements latex_preamble = ('', None), + + # text options + text_sectionchars = ('*=-~"+`', 'text'), + text_windows_newlines = (False, 'text'), ) def __init__(self, dirname, filename, overrides, tags): |