Преглед изворни кода

ox-html.el: Fix TOC export of TODO headlines

* lisp/ox-html.el (org-html--todo): Don't show nil in format string for
  TODO class

Use empty string if :html-todo-kwd-class-prefix is not present.

TINYCHANGE
Austin Walker пре 9 година
родитељ
комит
5a193ed485
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lisp/ox-html.el

+ 1 - 1
lisp/ox-html.el

@@ -1978,7 +1978,7 @@ INFO is a plist used as a communication channel."
   (when todo
     (format "<span class=\"%s %s%s\">%s</span>"
 	    (if (member todo org-done-keywords) "done" "todo")
-	    (plist-get info :html-todo-kwd-class-prefix)
+	    (or (plist-get info :html-todo-kwd-class-prefix) "")
 	    (org-html-fix-class-name todo)
 	    todo)))