diff --git a/scripts/sipify.py b/scripts/sipify.py index f3d9b8b1b34..ba886644a95 100755 --- a/scripts/sipify.py +++ b/scripts/sipify.py @@ -712,6 +712,11 @@ def process_doxygen_line(line: str) -> str: if CONTEXT.doxy_inside_sip_run == 2: return "" + if re.search(r'<(?:dl|dt|dd>)', line): + exit_with_error( + "Don't use raw html
,
or
tags in documentation. " + "Use markdown headings instead") + # Detect code snippet code_match = re.search(r'\\code(\{\.?(\w+)})?', line) if code_match: