This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flex-site.git
commit 4edb40de11b7a27aba69ca23c0f213a808017986 Author: Josh Tynjala <[email protected]> AuthorDate: Wed Jun 25 09:03:35 2025 -0700 pelicanconf.py: fix escape sequence --- pelicanconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelicanconf.py b/pelicanconf.py index 6bef4e7d6..dc8a0efee 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -46,7 +46,7 @@ PAGE_PATHS = ['.'] BASE = '/' # Path with no extension -PATH_METADATA = '(?P<path_no_ext>.*)\..*' +PATH_METADATA = '(?P<path_no_ext>.*)\\..*' # We are not slugifying any pages ARTICLE_URL = ARTICLE_SAVE_AS = PAGE_URL = PAGE_SAVE_AS = '{path_no_ext}.html'
