From: Eric S Fraga <e.fraga@ucl.ac.uk>
To: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: feature request: exporting TBLFM line, formatted or not
Date: Mon, 11 Apr 2016 15:20:12 +0100 [thread overview]
Message-ID: <87h9f8mdlv.fsf@ucl.ac.uk> (raw)
In-Reply-To: <1bbb803c2d1d4ae391de2caff17ebb62@HE1PR01MB1898.eurprd01.prod.exchangelabs.com> (Nick Dokos's message of "Mon, 11 Apr 2016 13:22:39 +0000")
Okay, a start on this using hooks:
#+begin_src emacs-lisp
(defun esf/process-table-tblfm (backend)
"Process the TBLFM line to make it available for export as a verbatim block"
(while (re-search-forward "^ *#\\+TBLFM:" (point-max) t)
(replace-match ":")
(let ((start (point))
(end (progn (forward-line) (point))))
(goto-char start)
(while (re-search-forward "::" end t)
(replace-match "\n: ")))
)
)
(add-hook 'org-export-before-parsing-hook 'esf/process-table-tblfm)
#+end_src
I'm sure there's a much easier way to do this but, for now, this does
what I need.
thanks,
eric
--
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-705-g716e33
next prev parent reply other threads:[~2016-04-11 14:20 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-11 12:50 feature request: exporting TBLFM line, formatted or not Eric S Fraga
2016-04-11 13:22 ` Nick Dokos
[not found] ` <1bbb803c2d1d4ae391de2caff17ebb62@HE1PR01MB1898.eurprd01.prod.exchangelabs.com>
2016-04-11 13:40 ` Eric S Fraga
2016-04-11 14:20 ` Eric S Fraga [this message]
2016-04-12 20:15 ` Nicolas Goaziou
[not found] ` <a16c6224a33449c684b11fa4eebdac42@HE1PR01MB1898.eurprd01.prod.exchangelabs.com>
2016-04-13 7:30 ` Eric S Fraga
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=87h9f8mdlv.fsf@ucl.ac.uk \
--to=e.fraga@ucl.ac.uk \
--cc=emacs-orgmode@gnu.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public 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).