Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #96764 > unrolled thread
| Started by | Laura Creighton <lac@openend.se> |
|---|---|
| First post | 2015-09-17 14:36 +0200 |
| Last post | 2015-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.
Re: Automating Sphinx generated documentation Laura Creighton <lac@openend.se> - 2015-09-17 14:36 +0200
| From | Laura Creighton <lac@openend.se> |
|---|---|
| Date | 2015-09-17 14:36 +0200 |
| Subject | Re: 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.
Back to top | Article view | comp.lang.python
csiph-web