Fix #5016: `character_level_inline_markup` setting is not initialized

This commit is contained in:
Takeshi KOMIYA 2018-06-01 12:44:53 +09:00
parent e0e0d917a6
commit a9657b4579
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,10 @@ Features added
Bugs fixed Bugs fixed
---------- ----------
* #5016: ``character_level_inline_markup`` setting is not initialized for
combination of non reST source parsers (ex. recommonmark) and docutils-0.13
Testing Testing
-------- --------

View File

@ -66,6 +66,7 @@ default_settings = {
'halt_level': 5, 'halt_level': 5,
'file_insertion_enabled': True, 'file_insertion_enabled': True,
'smartquotes_locales': [], 'smartquotes_locales': [],
'character_level_inline_markup': False, # for docutils-0.13.1 or older
} }
# This is increased every time an environment attribute is added # This is increased every time an environment attribute is added