Rainer M Krug <rai...@krugs.de> writes: > Thorsten Jolitz <tjol...@gmail.com> 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). >> #+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 -- cheers, Thorsten