|
From: | Vikas Rawal |
Subject: | Re: [O] NA in R source code block |
Date: | Sat, 31 Mar 2018 18:13:40 +0530 |
I created this export filter which uses something similar but automatically replaces nil with --- on all my documents: (defun org-export-blanks-filter-latex (row backend info) "Replace nil in table with --- in LaTeX export." (when (org-export-derived-backend-p backend 'latex) (replace-regexp-in-string "nil" "---" row))) (add-to-list 'org-export-filter-table-row-functions 'org-export-blanks-filter-latex)
This gets more painful if I want to use something like “—“ in numeric columns. The first approach/export filter is less painful than this. Thanks, Vikas |
[Prev in Thread] | Current Thread | [Next in Thread] |