From 00604048fe2c366dbc67501964d1026b0897b9b5 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Thu, 3 Oct 2024 19:51:12 +0800 Subject: [PATCH] Use html only, do not use xhtml --- progs/convert/html/tmhtml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/progs/convert/html/tmhtml.scm b/progs/convert/html/tmhtml.scm index 7302cca..d291a92 100644 --- a/progs/convert/html/tmhtml.scm +++ b/progs/convert/html/tmhtml.scm @@ -1082,8 +1082,7 @@ (string-append (tmhtml-suffix (substring s 0 sep)) (string-drop s sep))) ((string-ends? s ".tm") - (string-append (string-drop-right s 3) - (if tmhtml-mathml? ".xhtml" ".html"))) + (string-append (string-drop-right s 3) ".html")) ((string-ends? s ".texmacs") (string-append (string-drop-right s 8) ".tm")) (else s))))