diff options
author | Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> | 2015-12-09 16:54:45 +0900 |
---|---|---|
committer | Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> | 2015-12-09 16:54:45 +0900 |
commit | 8bfc9409ec7a6d32fd10a1961e716da3081205a1 (patch) | |
tree | 24487e21f50b19666457e36704892c2c1c954554 /sphinx/quickstart.py | |
parent | 3d4a11ecd6026e28967ceed92c2ab62891ba6b6f (diff) | |
parent | 2c58eef1d1f77e1bd44ba38f039c8fc80d7aecb7 (diff) | |
download | sphinx-git-8bfc9409ec7a6d32fd10a1961e716da3081205a1.tar.gz |
Merge pull request #1757 from hemmecke/master
fix unclear documentation for html_last_updated_fmt
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 1cfe715c5..ffc4961dc 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -216,9 +216,10 @@ html_static_path = ['%(dot)sstatic'] # directly to the root of the documentation. #html_extra_path = [] -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%%b %%d, %%Y' +# If not None, a 'Last updated on:' timestamp is inserted at every page +# bottom, using the given strftime format. +# The empty string is equivalent to '%%b %%d, %%Y'. +#html_last_updated_fmt = None # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. |