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

2022-09-25 Thread Ihor Radchenko
Ihor Radchenko  writes:

> rapun...@disroot.org writes:
>
>> From: Giovanni Alfredo Garciliano Díaz 
>>
>> * 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

Applied onto main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=3e9f98c691f5505dbfdc4cb4b57a411c03bd69aa

-- 
Ihor Radchenko,
Org mode contributor,
Learn more about Org mode at https://orgmode.org/.
Support Org development at https://liberapay.com/org-mode,
or support my work at https://liberapay.com/yantar92



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

2022-08-26 Thread Ihor Radchenko
rapun...@disroot.org writes:

> From: Giovanni Alfredo Garciliano Díaz 
>
> * 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

Thanks!
However, the patch does not apply onto current main for some reason.
Also, please finish sentences with "." in the commit summary.

-- 
Ihor Radchenko,
Org mode contributor,
Learn more about Org mode at https://orgmode.org/.
Support Org development at https://liberapay.com/org-mode,
or support my work at https://liberapay.com/yantar92



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

2022-08-26 Thread rapunzel
From: Giovanni Alfredo Garciliano Díaz 

* 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" . "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\;>")
 ("xhtml-11" . "http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\;>")
+\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\;>")
 
 ("html5" . "")
 ("xhtml5" . ""))
-- 
2.37.2.windows.2