Niche topic, how do I make source code evalution show “#+results” and then results, rather than “#+RESULTS:”, and then results?
I looked at org-babel-execute-src-block
in ob-core.el
, but I couldn’t find anything obvious that would output “#+RESULTS:” anywhere.
My first thought had been to do something like
(cl-defmethod org-babel-execute-src-block :around ((&optional arg info params executor-type))
(string-replace "#+RESULTS" "#+results" (cl-call-next-method)))
, but I think that code is wrong somehow, and anyway I need to find the function where it is outputted first.