From: John Kitchin <jkitchin@andrew.cmu.edu>
To: "Charles C. Berry" <ccberry@ucsd.edu>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>,
Grant Rettke <gcr@wisdomandwonder.com>
Subject: Re: How would you export one headline every time that you tangle the file?
Date: Thu, 13 Aug 2015 10:14:18 -0400 [thread overview]
Message-ID: <m28u9fp96t.fsf@andrew.cmu.edu> (raw)
In-Reply-To: <alpine.OSX.2.11.1508121824220.1460@charlessmacbook>
I also do something like this for scientific manuscripts, but I usually put it in a heading at the
end and tag the heading :noexport:. that gives me some more flexibility
to have multiple steps, some notes, etc...
e.g.
* build :noexport:
#+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
Charles C. Berry writes:
> 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
--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
prev parent reply other threads:[~2015-08-13 14:14 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
2015-08-13 14:14 ` John Kitchin [this message]
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=m28u9fp96t.fsf@andrew.cmu.edu \
--to=jkitchin@andrew.cmu.edu \
--cc=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.