Ivan Vilata i Balaguer <i...@selidor.net> wrote: > Nick Dokos (2010-10-13 21:10:33 +0200) wrote: > > > Yes, thanks. I'll try it out later. FWIW, my mail reader does not see > > an attachment in your message: all I get is the following attachmen > > with an external body. Not sure whose fault that is though: maybe mh-e > > gets hopelessly confused with it. Can you post the HTML file inline? > > Argh, I made an external attachment, sorry. Here you have the file: > > ----8<---- > <html> > <body> > <!-- [CDATA[ > #+ORGTBL: SEND test orgtbl-to-html > | foo&bar | > ]] --> > <!-- BEGIN RECEIVE ORGTBL test --> > <!-- END RECEIVE ORGTBL test --> > </body> > </html> > ----8<---- >
The following patch should fix it: --8<---------------cut here---------------start------------->8--- diff --git a/lisp/org-html.el b/lisp/org-html.el index 3fd7b72..f7824ce 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -1885,7 +1885,7 @@ lang=\"%s\" xml:lang=\"%s\"> ;; ignore this line (throw 'next-line t))) ;; Break the line into fields - (setq fields (org-split-string line "[ \t]*|[ \t]*")) + (setq fields (mapcar (function org-html-expand) (org-split-string line "[ \t]*|[ \t]*"))) (unless fnum (setq fnum (make-vector (length fields) 0) nfields (length fnum))) (setq nline (1+ nline) i -1 --8<---------------cut here---------------end--------------->8--- HTH, Nick _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode