emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] ox-html.el: Fix DTD typo


From: rapunzel
Subject: [PATCH] ox-html.el: Fix DTD typo
Date: Fri, 26 Aug 2022 13:57:03 +0000

From: Giovanni Alfredo Garciliano Díaz <giobeatle10@gmail.com>

* lisp/ox-html.el (org-html-doctype-alist): Fix system identifier for XHTML 1.1 
DTD

Right DTDs are listed on https://www.w3.org/QA/2002/04/valid-dtd-list.html

TINYCHANGE
---
 lisp/ox-html.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 9e8740754..fd0e8eca8 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -214,7 +214,7 @@
 ("xhtml-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 
Frameset//EN\"
 \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\";>")
 ("xhtml-11" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\";>")
+\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\";>")
 
 ("html5" . "<!DOCTYPE html>")
 ("xhtml5" . "<!DOCTYPE html>"))
-- 
2.37.2.windows.2



reply via email to

[Prev in Thread] Current Thread [Next in Thread]