From 1f0a7f6aa1a8b0a5f426a2cd59aad3134e65da3c Mon Sep 17 00:00:00 2001 From: Ricardo Lafuente Date: Jan 31 2022 15:24:59 +0000 Subject: Support \see tags from doxygen --- diff --git a/website/extract_comments.py b/website/extract_comments.py index 4dea19e..8f2bb37 100644 --- a/website/extract_comments.py +++ b/website/extract_comments.py @@ -53,7 +53,9 @@ def comment_to_md(text): elif line in ("* "): line = "" if line.startswith("\\note"): - line = line.replace("\\note", "Note: ") + line = line.replace("\\note", "**Note**: ") + if line.startswith("\\see"): + line = line.replace("\\note", "**See also**: ") newtext += line + "\n" return newtext