From: Uwe Brauer <oub@mat.ucm.es> To: emacs-orgmode@gnu.org Subject: Re: [SOLVED] Date: Wed, 04 Apr 2018 15:29:52 +0200 [thread overview] Message-ID: <87sh8bdrqn.fsf@mat.ucm.es> (raw) In-Reply-To: <87po3frtmr.fsf@mat.ucm.es> > To answer my own question > | / | / | | | / | > | | Name | Res | Letra | Obs | > |---+-------+-----+-------+-----| > | | Smith | 0 | | | > | | Jones | 1.4 | | | > | | Bond | 5.6 | * | | > All columns starting with / are ignored when exporting. Sorry for the > noise and the double posting. That is not entirely correct. Someone (I forgot who it was, sorry) provided me with the following hack (add-hook 'org-export-before-processing-hook 'f-ox-filter-table-column-del) (defun f-ox-filter-table-column-del (back-end) "Delete the columns $2 to $> marked as \"/\" on a row with \"/\" in $1. If you want a non-empty column $1 to be deleted make it $2 by inserting an empty column before or rearrange column order in some other way. Make sure \"/\" is in $1 again after that." (while (re-search-forward "^[ \t]*| +/ +|\\(.*?|\\)?? +\\(/\\) +|" nil t) (goto-char (match-beginning 2)) (org-table-delete-column) (beginning-of-line))) That is very useful and I wonder why there is nothing in org vanilla (but then it might and I did not find it.)
next prev parent reply other threads:[~2018-04-04 13:32 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-04-04 9:08 export table to html, don't display certain columns Uwe Brauer 2018-04-04 13:25 ` [SOLVED] (was: export table to html, don't display certain columns) Uwe Brauer 2018-04-04 13:29 ` Uwe Brauer [this message] -- strict thread matches above, loose matches on Subject: below -- 2021-12-28 13:41 [BUG] org-persist [9.5 (release_9.5-194-gdb302d @ /home/oub/emacs/site-lisp/packages/org/)] Uwe Brauer 2021-12-28 13:53 ` [SOLVED] (was: [BUG] org-persist [9.5 (release_9.5-194-gdb302d @ /home/oub/emacs/site-lisp/packages/org/)]) Uwe Brauer 2021-12-28 14:49 ` Ihor Radchenko 2021-12-28 17:28 ` [SOLVED] Uwe Brauer 2021-12-29 5:11 ` [SOLVED] Ihor Radchenko 2021-12-29 8:06 ` [SOLVED] Uwe Brauer 2021-12-29 8:18 ` [SOLVED] Ihor Radchenko 2021-09-28 16:46 how to export checkboxes to odt? Uwe Brauer 2021-09-28 20:21 ` [SOLVED] (was: how to export checkboxes to odt?) Uwe Brauer 2021-09-29 4:07 ` Timothy 2021-09-29 6:30 ` [SOLVED] Uwe Brauer 2019-12-11 21:50 org-ref-insert-cite-link inserts citep Uwe Brauer 2019-12-11 21:58 ` [SOLVED] (was: org-ref-insert-cite-link inserts citep) Uwe Brauer 2019-12-11 22:20 ` John Kitchin 2019-12-12 8:13 ` [SOLVED] Uwe Brauer 2018-11-29 11:38 org babel: %% [removed source block] Uwe Brauer 2018-11-29 16:32 ` Berry, Charles 2018-11-29 17:27 ` [SOLVED] (was: org babel: %% [removed source block]) Uwe Brauer 2018-11-29 22:20 ` [SOLVED] Nick Dokos 2018-03-01 13:37 how do you compose mails in Gnus with org-mode Joseph Vidal-Rosset 2018-03-03 11:57 ` Thorsten Jolitz 2018-03-06 10:12 ` Uwe Brauer 2018-03-06 18:24 ` Thorsten Jolitz 2018-03-06 19:01 ` Uwe Brauer 2018-03-06 19:36 ` Thorsten Jolitz 2018-03-07 9:57 ` Uwe Brauer 2018-03-07 17:46 ` Thorsten Jolitz 2018-03-08 8:50 ` Uwe Brauer 2018-03-08 16:58 ` Thorsten Jolitz 2018-03-09 21:49 ` [SOLVED] (was: how do you compose mails in Gnus with org-mode) Uwe Brauer 2018-03-09 22:59 ` [SOLVED] Thorsten Jolitz
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://www.orgmode.org/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=87sh8bdrqn.fsf@mat.ucm.es \ --to=oub@mat.ucm.es \ --cc=emacs-orgmode@gnu.org \ --subject='Re: [SOLVED]' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).