summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2017-10-07 14:46:44 -0400
committerKyle Meyer <kyle@kyleam.com>2017-10-08 10:39:47 -0400
commit027cfc3d15a11ff65a4568ee2be067acdd8f4fb7 (patch)
tree54a023b7099cd4b1e1c47cf51adc256bcedc2234
parent07f939f419163a785c5583d7f291e6ea6752584c (diff)
downloadorg-mode-027cfc3d15a11ff65a4568ee2be067acdd8f4fb7.tar.gz
ox-s5: Don't use org-html-end-plain-list
* contrib/lisp/ox-s5.el (org-s5-plain-list): Adjust for the removal of org-html-end-plain-list. The function org-html-end-plain-list was deleted in 8855c23c6 (ox-html: Plain list supports arbitrary attributes, 2017-02-13). Reported-by: <dchechin92@gmail.com> <https://lists.gnu.org/archive/html/emacs-orgmode/2017-10/msg00123.html>
-rw-r--r--contrib/lisp/ox-s5.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/lisp/ox-s5.el b/contrib/lisp/ox-s5.el
index 8f95010..0496aae 100644
--- a/contrib/lisp/ox-s5.el
+++ b/contrib/lisp/ox-s5.el
@@ -292,7 +292,8 @@ which will make the list into a \"build\"."
"<%s class='org-%s%s'>" tag tag
(if (org-export-get-node-property :INCREMENTAL plain-list t)
" incremental" ""))
- contents (org-html-end-plain-list type))))
+ contents
+ (format "</%s>" tag))))
(defun org-s5-inner-template (contents info)
"Return body of document string after HTML conversion.