From 0ab12148bcaa2cbc947b8aec710d52b9f0af3073 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 22 Feb 2012 09:34:06 +0100 Subject: [PATCH] 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. --- contrib/lisp/org-export.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 104f348cd..5eace8b6d 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -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)