From 96411737583b66e718317ad5d67171f122830ca6 Mon Sep 17 00:00:00 2001 From: Michal Kunc Date: Thu, 18 Nov 2021 23:32:01 +0100 Subject: [PATCH] Add todo --- db_explorer/db_explorer/app.py | 1 + 1 file changed, 1 insertion(+) 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):