diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-11-27 14:01:02 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-27 20:28:37 -0500 |
commit | e4dc2cd51902a8cd83476f861cf52996e5adf157 (patch) | |
tree | 48caa6602cd630b76c440fd57627e68e19bfd295 /docs/users_guide/conf.py | |
parent | eb86e867694bceedfb47a527d71429197ffe6dda (diff) | |
download | haskell-e4dc2cd51902a8cd83476f861cf52996e5adf157.tar.gz |
relnotes: Rework treatment of included package list
Previously the included package lists took a disproportionate amount of
space in the resulting document and were difficult to maintain. Turn it
into a table.
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D4230
Diffstat (limited to 'docs/users_guide/conf.py')
-rw-r--r-- | docs/users_guide/conf.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/users_guide/conf.py b/docs/users_guide/conf.py index 41b446a47d..4d4704a769 100644 --- a/docs/users_guide/conf.py +++ b/docs/users_guide/conf.py @@ -13,7 +13,11 @@ sys.path.insert(0, os.path.abspath('.')) from ghc_config import extlinks, version import ghc_config -extensions = ['sphinx.ext.extlinks', 'sphinx.ext.mathjax', 'flags'] +extensions = ['sphinx.ext.extlinks', + 'sphinx.ext.mathjax', + # GHC-specific extensions + 'flags', + 'ghc_packages'] templates_path = ['.templates'] source_suffix = '.rst' |