From 04978e9b752fcb2d6937e687071ea80f11ab5eaf Mon Sep 17 00:00:00 2001 From: Mike Lissner Date: Sat, 16 Aug 2014 21:07:30 -0700 Subject: [PATCH] Adds reference to SLUGIFY_SOURCE When working on my site, I wanted SLUGIFY_SOURCE, but I came across PATH_METADATA first and enabled that for a while. Better to include the cross-reference where people can find it. --- docs/settings.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings.rst b/docs/settings.rst index df2fa722..088506b0 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -66,7 +66,7 @@ Setting name (followed by default value, if any) For example, if you would like to extract both the date and the slug, you could set something like: ``'(?P\d{4}-\d{2}-\d{2})_(?P.*)'``. - See :ref:`path_metadata`. + See :ref:`path_metadata` and ``SLUGIFY_SOURCE``. ``PATH_METADATA = ''`` Like ``FILENAME_METADATA``, but parsed from a page's full path relative to the content source directory. See :ref:`path_metadata`.