Is there a way to syntax highlight Org-mode inline source code which is marked with src_ruby{Array.new}
?
Does Org-mode has default option for this ? Or Is there other method to do this ?
Is there a way to syntax highlight Org-mode inline source code which is marked with src_ruby{Array.new}
?
Does Org-mode has default option for this ? Or Is there other method to do this ?
add to function org-set-font-lock-defaults in org.el
UPDATE: the correct answer to this particular question is following https://stackoverflow.com/a/28059832/462601 . Answer presented here is related to this question Syntax highlighting within #+begin_src block in emacs orgmode not working
You mean like syntax-highlighting source blocks in buffer?
You need to set
(setq org-src-fontify-natively t)
Ref: http://orgmode.org/worg/org-contrib/babel/examples/fontify-src-code-blocks.html