rougier / nano-emacs

GNU Emacs / N Λ N O - Emacs made simple
GNU General Public License v3.0
2.52k stars 195 forks source link

[Question] Automatic preview of text formatting org-mode #40

Closed ieremies closed 3 years ago

ieremies commented 3 years ago

So, I'm just started my journey in Emacs, and I've been loving nano! Recently I realized that somehow the org-mode text formatting like =verbatin= was shown as image

How do I disable this behavior? I do have some programming experience but my elisp skills are almost none.

jpablobr commented 3 years ago

For that you can set the following Org variable to nil:

(setq org-hide-emphasis-markers nil)

Basically the opposite of this question: https://stackoverflow.com/questions/10969617/hiding-markup-elements-in-org-mode

ieremies commented 3 years ago

Thanks sooo much!