summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-10-15 08:22:29 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-10-15 08:22:29 +0200
commit397880bcdeb871b215373ad11df32f8ad39e94b5 (patch)
tree41ddd14da89f05df63ff92741e398bc470b0cc1b
parentb9105a5acf328c8c011921304c3fcd84939331da (diff)
downloadorg-mode-397880bcdeb871b215373ad11df32f8ad39e94b5.tar.gz
Fix special character bug in `orgtbl-to-html'
* lisp/org-table.el (orgtbl-to-html): Apply `org-html-expand' to the table fields.
-rw-r--r--lisp/org-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index 42ede7c..c02f4e5 100644
--- a/lisp/org-table.el
+++ b/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)