diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/conf.py | 8 | ||||
-rw-r--r-- | Documentation/getting_started/writing_documentation.md | 3 |
2 files changed, 1 insertions, 10 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 6284fca73c..d5b522afb9 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -31,14 +31,6 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' -# Try to load DITAA -try: - import sphinxcontrib.ditaa -except ImportError: - print("Error: Please install sphinxcontrib.ditaa for ASCII art conversion\n") -else: - extensions += ['sphinxcontrib.ditaa'] - # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # diff --git a/Documentation/getting_started/writing_documentation.md b/Documentation/getting_started/writing_documentation.md index b9c30b00d3..6b1cf3ceb5 100644 --- a/Documentation/getting_started/writing_documentation.md +++ b/Documentation/getting_started/writing_documentation.md @@ -49,10 +49,9 @@ modules: * sphinx * recommonmark * sphinx_rtd_theme -* sphinxcontrib-ditaa The following combination of versions has been tested: sphinx 2.3.1, -recommonmark 0.6.0, sphinx_rtd_theme 0.4.3 and sphinxcontrib-ditaa 0.7. +recommonmark 0.6.0, and sphinx_rtd_theme 0.4.3. Now change into the `Documentation` folder in the coreboot directory and run this command in there |