David Maus <[email protected]> writes:
>> Summary: table.el tables with row and col spans are not getting exported
>> as expected on html export.
>>
>> Looks like the table markers gets recognized as strikethroughs, mdashes
>> and ndashes. This apparrently is getting in the way of proper
>> export.
>>
>> Furthermore I see no rowspans and colspans in the generated html.
As a workaround, one can try to export table.el tables to org-mode
tables before export.
Quick hack:
#+begin_src emacs-lisp
(defun org-convert-table-el-all ()
(interactive)
(save-excursion
(goto-char (point-min))
(while (re-search-forward "^[ \t]*\\+-+.+\\+[ \t]*$" nil t)
(when (org-at-table.el-p)
(org-table-create-with-table.el)))))
#+end_src
Hook this to org-export-preprocess-before-selecting-backend-code-hook
and you'll be prompted whether you want to convert tables or not.
Not tested, but you get the idea.
HTH,
--
Bastien
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode