0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

ox-html: Fix last commit (part 2)

* lisp/ox-html.el (org-html-plain-list): Fix typo.
This commit is contained in:
Nicolas Goaziou 2017-02-14 17:27:26 +01:00
parent 0890cc7b6c
commit 4caad0555f

View file

@ -3147,10 +3147,10 @@ the plist used as a communication channel."
CONTENTS is the contents of the list. INFO is a plist holding
contextual information."
(let* ((type (pcase (org-element-property :type plain-list)
('ordered "ol")
('unordered "ul")
('descriptive "dl")
(type (error "Unknown HTML list type: %s" type))))
(`ordered "ol")
(`unordered "ul")
(`descriptive "dl")
(other (error "Unknown HTML list type: %s" other))))
(class (format "org-%s" type))
(attributes (org-export-read-attribute :attr_html plain-list)))
(format "<%s %s>\n%s</%s>"