diff --git a/lisp/org-docbook.el b/lisp/org-docbook.el index 51744366d..f40cd9706 100644 --- a/lisp/org-docbook.el +++ b/lisp/org-docbook.el @@ -1371,7 +1371,9 @@ the alist of previous items." "\n" "\n")) ;; We're ending last item of the list: end list. - (when lastp (insert (format "\n" type))))) + (when lastp + (insert (format "\n" type)) + (org-export-docbook-open-para)))) (funcall get-closings pos)) (cond ;; At an item: insert appropriate tags in export buffer. diff --git a/lisp/org-html.el b/lisp/org-html.el index 9a4daf226..0abecace3 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -2474,7 +2474,9 @@ the alist of previous items." ;; Ending for every item (org-close-li type) ;; We're ending last item of the list: end list. - (when lastp (insert (format "\n" type))))) + (when lastp + (insert (format "\n" type)) + (org-open-par)))) (funcall get-closings pos)) (cond ;; At an item: insert appropriate tags in export buffer.