mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #54: awkward wording in quickstart.
This commit is contained in:
parent
46b6689240
commit
30bb2bc9fe
@ -509,12 +509,15 @@ directly.'''
|
||||
print bold('Finished: An initial directory structure has been created.')
|
||||
print '''
|
||||
You should now populate your master file %s and create other documentation
|
||||
source files. Use the sphinx-build script to build the docs, like so:
|
||||
''' % masterfile + (create_makefile and '''
|
||||
make <builder>
|
||||
''' or '''
|
||||
sphinx-build -b <builder> %s %s
|
||||
''' % (srcdir, builddir))
|
||||
source files. ''' % masterfile + (create_makefile and '''\
|
||||
Use the Makefile to build the docs, like so:
|
||||
make builder
|
||||
''' or '''\
|
||||
Use the sphinx-build command to build the docs, like so:
|
||||
sphinx-build -b builder %s %s
|
||||
''' % (srcdir, builddir)) + '''\
|
||||
where "builder" is one of the supported builders, e.g. html, latex or linkcheck.
|
||||
'''
|
||||
|
||||
|
||||
def main(argv=sys.argv):
|
||||
|
Loading…
Reference in New Issue
Block a user