diff --git a/db_explorer/db_explorer/app.py b/db_explorer/db_explorer/app.py index 1b493d1..98cc391 100644 --- a/db_explorer/db_explorer/app.py +++ b/db_explorer/db_explorer/app.py @@ -19,6 +19,7 @@ with open("./db_explorer/en.json") as f: def filter_vtt(text): compendium_re = re.compile(r"@Compendium\[([^\]]+)\]\{([^\}]+)\}") def compendium_return(m): + # TODO: Actually add links return f"{m.group(2)}" macro_re = re.compile(r"\[\[\/\S?r\s(?:(?P[^\{\] ]+)[^\{\]]*|(?:\{(?P[^\}]+)\}\[[^\]]+\])?)\]\](?:\{(?P[^\}]+)\})?") def macro_return(m):