emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [PATCH] Re: Export as HTML does not preserve nonstandard entities as


From: Christian Moe
Subject: [O] [PATCH] Re: Export as HTML does not preserve nonstandard entities as TODO signs
Date: Sun, 16 Oct 2011 16:36:02 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0) Gecko/20110624 Thunderbird/5.0

Correct html export of todo keywords

 * org-html.el (org-export-as-html): Apply
   org-export-html-get-todo-kwd-class-name to the the class attribute
   of the todo-keyword span tag, not to its text content

The problem was that special characters in todo keywords were being
replaced by underscore. This was meant to happen to the class
attributes set around them.

TINYCHANGE

This only swaps two arguments to a concat.


diff --git a/lisp/org-html.el b/lisp/org-html.el
index a2a9426..47adfd2 100644
--- a/lisp/org-html.el
+++ b/lisp/org-html.el
@@ -1608,9 +1608,9 @@ lang=\"%s\" xml:lang=\"%s\">
                            (if (member (match-string 2 line)
                                        org-done-keywords)
                                "done" "todo")
-                           " " (match-string 2 line)
-                           "\"> " (org-export-html-get-todo-kwd-class-name
-                                   (match-string 2 line))
+                           " " (org-export-html-get-todo-kwd-class-name
+                                (match-string 2 line))
+                           "\"> " (match-string 2 line)
                            "</span>" (substring line (match-end 2)))))

          ;; Does this contain a reference to a footnote?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]