1
0
Fork 0
forked from github/pelican

Merge pull request #2660 from kurtmckee/fix-pagination-docs-typo

Fix a typo in the pagination settings docs
This commit is contained in:
Justin Mayer 2020-04-12 07:17:32 +02:00 committed by GitHub
commit 9d8a143ce8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1008,7 +1008,7 @@ subsequent pages at ``.../page/2/`` etc, you could set ``PAGINATION_PATTERNS``
as follows::
PAGINATION_PATTERNS = (
(1, '{url}', '{save_as}',
(1, '{url}', '{save_as}'),
(2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
)