From: "Charles C. Berry" <ccberry@ucsd.edu>
To: Grant Rettke <gcr@wisdomandwonder.com>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: How would you export one headline every time that you tangle the file?
Date: Wed, 12 Aug 2015 18:34:26 -0700 [thread overview]
Message-ID: <alpine.OSX.2.11.1508121824220.1460@charlessmacbook> (raw)
In-Reply-To: <CAAjq1meTrZ+JtWjSF2NAv4knwK88ekHG4mw688_D4SQqp-HKeg@mail.gmail.com>
On Wed, 12 Aug 2015, Grant Rettke wrote:
> Good afternoon,
>
> I've got an org file. It has a bunch of headlines. There is on
> headline names README.
>
> I want to do something every time I tangle the file. I want to:
>
> - Go to that headline
> - Select set the region to the contents of that headline (org-mark-subtree)
> - Export the contents using the Github Flavored Markup to the file README.md.
>
If this is a one-off, I'd write a babel block like this and put it under
the headline of that subtree:
#+NAME: tangle-and-export-readme
#+BEGIN_SRC emacs-lisp :tangle no :exports none
(org-babel-tangle)
(require 'ox-gfm)
(org-export-to-file 'gfm "README.md" nil t)
#+END_SRC
Then when you want to tangle,
C-c C-v g tangle-and-export-readme RET C-c C-c y
will do it. (Assuming contrib is on the load path, of course.)
You can use TAB completion with `C-c C-v g'.
HTH,
Chuck
next prev parent reply other threads:[~2015-08-13 1:34 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-12 21:04 How would you export one headline every time that you tangle the file? Grant Rettke
2015-08-13 1:34 ` Charles C. Berry [this message]
2015-08-13 14:14 ` John Kitchin
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.OSX.2.11.1508121824220.1460@charlessmacbook \
--to=ccberry@ucsd.edu \
--cc=emacs-orgmode@gnu.org \
--cc=gcr@wisdomandwonder.com \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.