org-export: Don't export tables rows containing parameters for formulas

* contrib/lisp/org-export.el (org-export-clean-table): Don't export
  tables rows containing parameters for formulas.
This commit is contained in:
Nicolas Goaziou 2012-02-22 09:34:06 +01:00
parent a39d94b38e
commit 0ab12148bc
1 changed files with 1 additions and 1 deletions

View File

@ -2993,7 +2993,7 @@ it also."
((org-table-colgroup-line-p row) nil)
((org-table-cookie-line-p row) nil)
;; Ignore rows starting with a special marker.
((string-match "^[ \t]*| *[!_^/] *|" row) nil)
((string-match "^[ \t]*| *[!_^/$] *|" row) nil)
;; Remove special column.
((and specialp
(or (string-match "^\\([ \t]*\\)|-+\\+" row)