emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* (Maybe) enhance `org-element-src-block-interpreter'?
@ 2014-08-05 16:17 Thorsten Jolitz
  2014-08-06  3:39 ` Aaron Ecay
  0 siblings, 1 reply; 12+ messages in thread
From: Thorsten Jolitz @ 2014-08-05 16:17 UTC (permalink / raw)
  To: emacs-orgmode


Hi, 

a slight enhancement:

#+begin_src emacs-lisp
  (defun tj/src-block-interpreter (src-block contents)
    "Interpret SRC-BLOCK element as Org syntax.  CONTENTS is nil."
    (let ((lang (org-element-property :language src-block))
          (switches (org-element-property :switches src-block))
          (params (org-element-property :parameters src-block))
          (headers (org-element-property :header src-block))
          (value
           (let ((val (org-element-property :value src-block)))
             (cond
              ((or org-src-preserve-indentation
                   (org-element-property :preserve-indent src-block))
               val)
              ((zerop org-edit-src-content-indentation) val)
              (t
               (let ((ind (make-string
                           org-edit-src-content-indentation ?\s)))
                 (replace-regexp-in-string
                  "\\(^\\)[ \t]*\\S-" ind val nil nil 1))))))
          packed-headers)
      (concat (format "%s#+BEGIN_SRC%s\n"
                      (progn
                        (while headers
                          (setq packed-headers
                                (concat
                                 (format "#+HEADER: %s\n"
                                         (pop headers))
                                 packed-headers)))
                        (or packed-headers ""))
                      (concat (and lang (concat " " lang))
                              (and switches (concat " " switches))
                              (and params (concat " " params))))
              (org-escape-code-in-string value)
              ;; (save-match-data
              ;;   (if (looking-at "^$") "" "\n"))
              "#+END_SRC")))
#+end_src

#+results:
: tj/src-block-interpreter

Parse this src-block (with point at beg of block):

,----
| M-: (setq ptree (org-element-at-point))
`----

#+header: :results raw
#+begin_src emacs-lisp
(message "hello world")
#+end_src

#+results:
hello world

Then evaluate

#+begin_src emacs-lisp
(org-element-src-block-interpreter ptree nil)
#+end_src

#+results:
: #+BEGIN_SRC emacs-lisp
:   (message "hello world")
: #+END_SRC

#+begin_src emacs-lisp
(tj/src-block-interpreter ptree nil)
#+end_src

#+results:
: #+HEADER: :results raw
: #+BEGIN_SRC emacs-lisp
:   (message "hello world")
: #+END_SRC


-- 
cheers,
Thorsten

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2014-08-08  8:45 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-05 16:17 (Maybe) enhance `org-element-src-block-interpreter'? Thorsten Jolitz
2014-08-06  3:39 ` Aaron Ecay
2014-08-06  8:19   ` Thorsten Jolitz
2014-08-06 11:34     ` Nicolas Goaziou
2014-08-06 12:03       ` Thorsten Jolitz
2014-08-06 12:32         ` Nicolas Goaziou
2014-08-06 13:18           ` Nicolas Goaziou
2014-08-08  8:19             ` Thorsten Jolitz
2014-08-08  8:45               ` Nicolas Goaziou
2014-08-06 14:15           ` Thorsten Jolitz
2014-08-06 14:36             ` Thorsten Jolitz
2014-08-07 12:14             ` Nicolas Goaziou

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).