mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Add viewcode to quickstart.
This commit is contained in:
parent
e4f4cd2bf9
commit
344dab342f
@ -718,6 +718,8 @@ Please indicate if you want to use one of the following Sphinx extensions:'''
|
||||
pngmath has been deselected.'''
|
||||
do_prompt(d, 'ext_ifconfig', 'ifconfig: conditional inclusion of '
|
||||
'content based on config values (y/N)', 'n', boolean)
|
||||
do_prompt(d, 'ext_viewcode', 'viewcode: include links to the source code '
|
||||
'of documented Python objects (y/N)', 'n', boolean)
|
||||
print '''
|
||||
A Makefile and a Windows command file can be generated for you so that you
|
||||
only have to run e.g. `make html' instead of invoking sphinx-build
|
||||
@ -732,7 +734,7 @@ directly.'''
|
||||
d['extensions'] = ', '.join(
|
||||
repr('sphinx.ext.' + name)
|
||||
for name in ('autodoc', 'doctest', 'intersphinx', 'todo', 'coverage',
|
||||
'pngmath', 'jsmath', 'ifconfig')
|
||||
'pngmath', 'jsmath', 'ifconfig', 'viewcode')
|
||||
if d['ext_' + name])
|
||||
d['copyright'] = time.strftime('%Y') + ', ' + d['author']
|
||||
d['author_texescaped'] = unicode(d['author']).\
|
||||
|
@ -126,6 +126,7 @@ def test_quickstart_all_answers(tempdir):
|
||||
'pngmath': 'N',
|
||||
'jsmath': 'no',
|
||||
'ifconfig': 'no',
|
||||
'viewcode': 'no',
|
||||
'Create Makefile': 'no',
|
||||
'Create Windows command file': 'no',
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user