I know that it is possible to change the face used to display markup (bold, italic, etc.) in org-mode, just as explained here.
However, I would like to know if it is possible to have this kind of settings activated for just one particular buffer, instead of having it activated for all org-mode buffers. In other words, I'm looking for a per-buffer setting for special text highlight in org-mode.
I'm a language teacher and I have dictionaries in org-mode format; it would be great to have special highlight for the different parts of a word entry based on the org-mode markups. On the other hand, naturally I do have also personal notes in org-mode, and for those notes I want the org-mode markups just the way they are.
Thanks for your help.
org-emphasis-alist
on a per-buffer basis? E.g., place(make-variable-buffer-local 'org-emphasis-alist)
in your.emacs
and then use file-local variable settings: https://www.gnu.org/software/emacs/manual/html_node/emacs/Specifying-File-Variables.html#Specifying-File-Variables – lawlist Mar 27 '17 at 14:54