Another approach to adding more documentation for --write-selected

This commit is contained in:
Michael Lissner 2014-10-14 12:54:04 -07:00
commit 91d81bfd92
3 changed files with 19 additions and 9 deletions

View file

@ -1,6 +1,9 @@
Publish your site
#################
.. _site_generation:
Site generation
===============
@ -16,6 +19,17 @@ folder, using the default theme to produce a simple site. The default theme
consists of very simple HTML without styling and is provided so folks may use
it as a basis for creating their own themes.
It's also possible to only generate a single file while working on a single
page. To do this, use the ``--write-selected`` argument, like so:
pelican --write-selected output/posts/2014/10/08/my-blog-title/index.html
Note that this uses the path to the generated file. To determine that path, use
the output of the ``--debug`` flag to determine the correct file name.
``--write-selected`` can take a comma-separated list of paths, if desired, or
can be configured as a setting. See: :ref:`writing_only_selected_content` for
more details.
You can also tell Pelican to watch for your modifications, instead of
manually re-running it every time you want to see your changes. To enable this,
run the ``pelican`` command with the ``-r`` or ``--autoreload`` option.