Merge branch 'nbats:main' into main

This commit is contained in:
adam662006 2023-04-07 14:34:24 +02:00 committed by GitHub
commit 01d05fac96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ def replace_domain_and_page(text):
return text
def replace_underscore_in_subsections(text):
pattern = r'(/#[\w]+(?:_[\w]+)*)'
pattern = r'(/#[\w\-]+(?:_[\w]+)*)'
matches = re.findall(pattern, text)
for match in matches:
replacement = match.replace('_', '-')