diff options
author | Georg Brandl <georg@python.org> | 2008-11-04 08:34:35 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-04 08:34:35 +0100 |
commit | a6f09758e3510dc7d685d78a456d28eefd565779 (patch) | |
tree | 668c9b00c1a94d77561b8d9a729f27be777d49a0 /sphinx/builder.py | |
parent | e666b6d203c1b763535c6a29271d0141b72c5969 (diff) | |
download | sphinx-git-a6f09758e3510dc7d685d78a456d28eefd565779.tar.gz |
Add -A option to pass values into HTML templates.
Diffstat (limited to 'sphinx/builder.py')
-rw-r--r-- | sphinx/builder.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/builder.py b/sphinx/builder.py index d466bd703..b3e36b455 100644 --- a/sphinx/builder.py +++ b/sphinx/builder.py @@ -449,6 +449,7 @@ class StandaloneHTMLBuilder(Builder): logo = logo, favicon = favicon, ) + self.globalcontext.update(self.config.html_context) def get_doc_context(self, docname, body, metatags): """Collect items for the template context of a page.""" |