Browse Source

Allow for multiple classes in HTML_CONTAINER_CLASS.

Based on a patch submitted by David Maus:
http://patchwork.newartisans.com/patch/178/
Bastien Guerry 14 years ago
parent
commit
0cafae6a6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-exp.el

+ 1 - 1
lisp/org-exp.el

@@ -1316,7 +1316,7 @@ the current file."
   (goto-char (point-min))
   (let (class)
     (while (re-search-forward
-	    "^[ \t]*:HTML_CONTAINER_CLASS:[ \t]+\\(\\S-+\\)" nil t)
+	    "^[ \t]*:HTML_CONTAINER_CLASS:[ \t]+\\(.+\\)$" nil t)
       (setq class (match-string 1))
       (save-excursion
 	(org-back-to-heading t)