Re: [O] returning propertized strings

2017-05-21 Thread John Kitchin
I figured out the properties are getting lost in org-babel-format-result, in the beginning with (setq result (org-no-properties result)). I can see a reason this is desirable is that the properties would not be persistent on saving/closing. On the other hand, it could be really useful in some

Re: [O] returning propertized strings

2017-05-21 Thread John Kitchin
On Sat, May 20, 2017 at 9:46 PM, Charles C. Berry wrote: > On Sat, 20 May 2017, John Kitchin wrote: > > If I run this block I get test as a result, but all its properties have >> been stripped. >> >> #+BEGIN_SRC emacs-lisp :results drawer >> (propertize "test" 'font-lock-face

Re: [O] returning propertized strings

2017-05-20 Thread Charles C. Berry
On Sat, 20 May 2017, John Kitchin wrote: If I run this block I get test as a result, but all its properties have been stripped. #+BEGIN_SRC emacs-lisp :results drawer (propertize "test" 'font-lock-face '(:foreground "red") 'help-echo "tooltip") #+END_SRC #+RESULTS: :RESULTS: test :END: Does