Make Org code evaluation block title lowercase

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.

I suggest you see if the user option org-babel-results-keyword works for you.

The documentation seems to say the value needs to be a capitalized word, but “results” has worked on my end.

Thank you, I had not seen this before, this works for me!