From 595f3be9880e63b0af479ffd88a31ef87c3ae8f5 Mon Sep 17 00:00:00 2001 From: Ravin Kumar Date: Thu, 28 Apr 2022 19:31:21 -0700 Subject: [PATCH] Add content expansion --- pelican/contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/contents.py b/pelican/contents.py index 1740df88d1..7357980776 100644 --- a/pelican/contents.py +++ b/pelican/contents.py @@ -337,7 +337,7 @@ def _get_intrasite_link_regex(self): intrasite_link_regex = self.settings['INTRASITE_LINK_REGEX'] regex = r""" (?P<[^\>]+ # match tag with all url-value attributes - (?:href|src|poster|data|cite|formaction|action)\s*=\s*) + (?:href|src|poster|data|cite|formaction|action|content)\s*=\s*) (?P["\']) # require value to be quoted (?P{}(?P.*?)) # the url value