FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 2745ddf6 authored by Nick Brown's avatar Nick Brown
Browse files

chore: Debugging behaviour in Gitlab CI

parent dbb2fb95
No related branches found
No related tags found
1 merge request!453feat: Knowledge base enhancements (diataxis)
Pipeline #714044 passed
......@@ -54,15 +54,17 @@ def on_page_content(html, page, config, files):
if not path.endswith("/"):
path += "/"
if not use_directory_urls:
path += "index.html"
def _replace(match):
def _replace(match, use_directory_urls: bool = use_directory_urls):
param = match.group(1)
url = match.group(2)
if url.startswith("/"):
url = url[1:]
if not use_directory_urls:
if not url.endswith("/"):
url += "/"
url += "index.html"
log.info(f"REPLACING site:{match.group(2)} with {path}{url}")
return f'{param}="{path}{url}"'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment