diff options
author | Philipp Deppenwiese <zaolin@das-labor.org> | 2018-05-09 12:07:38 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-11 08:58:08 +0000 |
commit | 57df0888169a2622e37dfad3694e3de544b8b6fb (patch) | |
tree | 2be094f3cae3114978ca59a694f5ad11c7ff5d9e /Documentation/conf.py | |
parent | 129cee4d04398b2a24fbffa9c52c73099fb361b1 (diff) |
Dokumentation: Sphinx add RST in markdown support
* This feature embedds RST into markdown for
table generation.
For more information, see
http://recommonmark.readthedocs.io/en/latest/index.html#autostructify
Change-Id: Iefebb3b7857bc98818e345f7d0e95fbf987305a8
Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org>
Reviewed-on: https://review.coreboot.org/26190
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r-- | Documentation/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index e893772e80..85e0438579 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -177,6 +177,7 @@ def setup(app): app.add_config_value('recommonmark_config', { 'enable_auto_toc_tree': True, 'enable_auto_doc_ref': True, + 'enable_eval_rst': True, 'url_resolver': lambda url: '/' + url }, True) app.add_transform(AutoStructify) |