mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add disabled status for #3304
This commit is contained in:
parent
513abbfdc6
commit
f6d2b59ab8
7 changed files with 59 additions and 7 deletions
|
|
@ -89,7 +89,7 @@ contains a list of reserved metadata keywords:
|
|||
``summary`` Brief description of content for index pages
|
||||
``lang`` Content language ID (``en``, ``fr``, etc.)
|
||||
``translation`` If content is a translation of another (``true`` or ``false``)
|
||||
``status`` Content status: ``draft``, ``hidden``, or ``published``
|
||||
``status`` Content status: ``draft``, ``hidden``, ``skip``, or ``published``
|
||||
``template`` Name of template to use to generate content (without extension)
|
||||
``save_as`` Save content to this relative file path
|
||||
``url`` URL to use for this article/page
|
||||
|
|
@ -633,6 +633,13 @@ attribute. Hidden posts will be output to ``ARTICLE_SAVE_AS`` as expected, but
|
|||
are not included by default in tag, category, and author indexes, nor in the
|
||||
main article feed. This has the effect of creating an "unlisted" post.
|
||||
|
||||
Skipped Posts
|
||||
==============
|
||||
|
||||
Posts marked with the ``skip`` status are ignored entirely. They are not
|
||||
processed, and not output to the ``ARTICLE_SAVE_AS`` path. These posts will
|
||||
also not be included in indexes or feeds.
|
||||
|
||||
.. _W3C ISO 8601: https://www.w3.org/TR/NOTE-datetime
|
||||
.. _AsciiDoc: https://asciidoc.org
|
||||
.. _Pelican Plugins: https://github.com/pelican-plugins
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue