From c8b659b9e571ddd5a482ffcd1d973baa508334ef Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Thu, 25 Dec 2025 01:21:42 +0000 Subject: [PATCH] Fix config example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a598f27..69b71dc 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Configuration To avoid clashing with classes already defined in user CSS style sheets, it is possible to specify the names of the classes that will be used. This can be done in the Pelican settings file by defining the `LINKCLASS` variable as a list of tuples, such as in this example: ```python -'LINKCLASS' = (('EXTERNAL_CLASS', 'name-of-the-class-for-external-links'), - ('INTERNAL_CLASS', 'name-of-the-class-for-internal-links')) +LINKCLASS = (('EXTERNAL_CLASS', 'name-of-the-class-for-external-links'), + ('INTERNAL_CLASS', 'name-of-the-class-for-internal-links')) ``` The default values for `EXTERNAL_CLASS` and `INTERNAL_CLASS` are, respectively, `'external'` and `'internal'`.