From: Thorsten Jolitz <tjolitz@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: Basic Literate Program
Date: Fri, 11 Jul 2014 00:28:28 +0200 [thread overview]
Message-ID: <87r41s4zn7.fsf@gmail.com> (raw)
In-Reply-To: CAA6UvuHebL7CpKjK3ujRtLQ-nY+GrM=HbQ0ZsiVrefQe7Wukqg@mail.gmail.com
Jacob Gerlach <jacobgerlach@gmail.com> writes:
> - On a related note, are there any tools to take org content from
> outside the SRC blocks and tangle it into comments in the C++ files?
When I call M-: (outorg-convert-org-to-outshine) on this Org-mode buffer:
,----
| * ORG SCRATCH
|
| ** A bit C++
|
| This program displays a string
| and then it exits
|
| This program justs displays a string and exits, variation 2
| #+begin_src c
| #include <iostream>
|
| int main() {
| std::cout << "Hello World!";
| std::cout << std::endl;
|
| return 0;
| }
| #+end_src
|
| #+results:
| : Hello World!
`----
I get
,----
| /* * ORG SCRATCH */
|
| /* ** A bit C++ */
|
| /* This program displays a string */
| /* and then it exits */
|
| /* This program justs displays a string and exits, variation 2 */
| #include <iostream>
|
| int main() {
| std::cout << "Hello World!";
| std::cout << std::endl;
|
| return 0;
| }
|
| /* #+results: */
| /* : Hello World! */
`----
This uses C, because thats in my org-babel-load-languages, should work
with C++ too. Some modes need a little fix due to inconsistent mode
naming, e.g. ESS[R]:
,----
| ;; special case R-mode
| (if (eq mode 'ess-mode)
| (funcall 'R-mode)
| (funcall mode)))
`----
maybe C++ needs this kind of special handling too, let me know if it
does not work out-of-the-box.
--
cheers,
Thorsten
next prev parent reply other threads:[~2014-07-10 22:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-10 21:31 Basic Literate Program Jacob Gerlach
2014-07-10 22:28 ` Thorsten Jolitz [this message]
2014-07-10 22:54 ` Jacob Gerlach
2014-07-10 23:31 ` Grant Rettke
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=87r41s4zn7.fsf@gmail.com \
--to=tjolitz@gmail.com \
--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).