瀏覽代碼

Fix special character bug in `orgtbl-to-html'

* lisp/org-table.el (orgtbl-to-html): Apply `org-html-expand' to the
table fields.
Carsten Dominik 14 年之前
父節點
當前提交
397880bcde
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org-table.el

+ 1 - 1
lisp/org-table.el

@@ -4258,7 +4258,7 @@ so you cannot specify parameters for it."
 		 (lambda (x)
 		   (if (eq x 'hline)
 		       "|----+----|"
-		     (concat "| " (mapconcat 'identity x " | ") " |")))
+		     (concat "| " (mapconcat 'org-html-expand x " | ") " |")))
 		 table)
 		splicep))
     (if (string-match "\n+\\'" html)