Thorsten Jolitz writes: > Rainer M Krug writes: > >> Thorsten Jolitz writes: >> I don't quite understand your code below and what it is supposed to do. > > Drawers are probably better in most cases, but this code lets you use > ':results pp replace' while developing, but converts the fixed-width pp > results into raw results when desired (e.g. in a buffer copy before some > action is taken). OK - I see. But what is the advantage in this approach? Drawer do perfectly what I want, i.e. encapsulating an org structure in a for replacement when re-calculated, inside the drawer they behave like normal org structure (folding, ...) and upon export they are exported as org code would be - or am I missing something? Rainer > >>> #+BEGIN_SRC emacs-lisp :results none >>> (defvar tj/fixed-width-to-raw-langs '("R") >>> "List of Babel langs for `tj/fixed-width-to-raw-results'.") >>> >>> (defun tj/fixed-width-to-raw-results () >>> "Call `org-toggle-fixed-width' on ':results pp'." >>> (org-babel-map-src-blocks nil >>> (and (member lang tj/toggle-fixed-width-src-block-langs) >>> (member "pp" (split-string header-args " " t)) >>> (save-excursion >>> (goto-char (org-babel-where-is-src-block-result)) >>> (forward-line) >>> (while (org-in-fixed-width-region-p) >>> (org-toggle-fixed-width) >>> (forward-line)))))) >>> >>> #+END_SRC >>> #+begin_src R :results pp replace >>> c("** New header2", "[[./graph1.pdf]]", "", "** and second header", "and some text" ) >>> #+end_src >>> >>> #+results: >>> : ** New header2 >>> : [[./graph1.pdf]] >>> : >>> : ** and second header >>> : and some text -- Rainer M. Krug email: Rainerkrugsde PGP: 0x0F52F982