From 3f8af1ab765a3ae570de1e61d0fc7388dbba86e5 Mon Sep 17 00:00:00 2001 From: Giorgio Date: Sun, 1 Apr 2018 21:25:41 -0400 Subject: [PATCH 1/2] List reserved metadata keywords Addresses https://github.com/getpelican/pelican/issues/2279 --- docs/content.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/content.rst b/docs/content.rst index 3eb6950d..8e9fd65f 100644 --- a/docs/content.rst +++ b/docs/content.rst @@ -70,6 +70,19 @@ Metadata syntax for Markdown posts should follow this pattern:: This is the content of my super blog post. +You can also have your own metadata keys (so long as they don't conflict with reserved metadata keywords) for use in your python templates. The following is the list of reserved metadata keywords: + +* `Title` +* `Tags` +* `Date` +* `Modified` +* `Status` +* `Category` +* `Author` +* `Authors` +* `Slug` +* `Summary` + Readers for additional formats (such as AsciiDoc_) are available via plugins. Refer to `pelican-plugins`_ repository for those. From 859e7af8c71253e6dc111a174958bd91ac37d650 Mon Sep 17 00:00:00 2001 From: Giorgio Date: Mon, 2 Apr 2018 20:45:27 -0400 Subject: [PATCH 2/2] Add template, save_as and url to list --- docs/content.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content.rst b/docs/content.rst index 8e9fd65f..2c88741d 100644 --- a/docs/content.rst +++ b/docs/content.rst @@ -82,6 +82,9 @@ You can also have your own metadata keys (so long as they don't conflict with re * `Authors` * `Slug` * `Summary` +* `Template` +* `Save_as` +* `Url` Readers for additional formats (such as AsciiDoc_) are available via plugins. Refer to `pelican-plugins`_ repository for those.