Fix a bug in generating list fragment.

This commit is contained in:
Yujie Wen 2015-04-05 16:26:25 +08:00
parent bf5a52869b
commit 151cdeaeaf
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ Extract and set `attr_html' to plain-list tag attributes."
(attrs (org-export-read-attribute :attr_html plain-list)))
(format "<%s%s>\n%s\n</%s>\n"
tag
(if attrs (org-html--make-attribute-string attrs) "")
(if attrs (concat " " (org-html--make-attribute-string attrs)) "")
contents
tag)))