From d7b49a5434e2001d5e04ab8d9ea290982933d037 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Tue, 18 Jun 2024 12:48:53 +0200 Subject: [PATCH] Fix escaping --- bib2html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bib2html.py b/bib2html.py index 7557cce..7a1b7d9 100755 --- a/bib2html.py +++ b/bib2html.py @@ -44,7 +44,7 @@ def format_latex(text): '\\"a': 'ä', '\\"o': 'ö', '\\"u': 'u', - '\mathcal': '', + '\\mathcal': '', '{': '', '}': '', '\\': '', -- 2.30.2