Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #96764 > unrolled thread

Re: Automating Sphinx generated documentation

Started byLaura Creighton <lac@openend.se>
First post2015-09-17 14:36 +0200
Last post2015-09-17 14:36 +0200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Automating Sphinx generated documentation Laura Creighton <lac@openend.se> - 2015-09-17 14:36 +0200

#96764 — Re: Automating Sphinx generated documentation

FromLaura Creighton <lac@openend.se>
Date2015-09-17 14:36 +0200
SubjectRe: Automating Sphinx generated documentation
Message-ID<mailman.697.1442493376.8327.python-list@python.org>
If you have watchdog installed:
https://pypi.python.org/pypi/watchdog
Jacob Kaplan Moss came up with this very nice one liner to do this.
$ watchmedo shell-command \
              --patterns="*.txt" \
              --ignore-pattern='_build/*' \
              --recursive \
              --command='make html'
							
change to .rst if that is what your Sphinx docs make, etc.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web