From 151cdeaeaf319d7e2ea5c966fc25d3686da39574 Mon Sep 17 00:00:00 2001 From: Yujie Wen Date: Sun, 5 Apr 2015 16:26:25 +0800 Subject: [PATCH] Fix a bug in generating list fragment. --- ox-reveal.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ox-reveal.el b/ox-reveal.el index 3f8ace9..aa81cd7 100755 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -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\n" tag - (if attrs (org-html--make-attribute-string attrs) "") + (if attrs (concat " " (org-html--make-attribute-string attrs)) "") contents tag)))