diff options
author | Blendoit <blendoit@gmail.com> | 2021-02-08 20:52:19 -0800 |
---|---|---|
committer | Blendoit <blendoit@gmail.com> | 2021-02-08 20:52:19 -0800 |
commit | 13918a560bdbe06e62edd8b6370ac078946613f2 (patch) | |
tree | 46653a496a52d7dedb61d3cf600e8e6f7ca02bb9 | |
parent | f61a8f29ce9823ad89843a75acec87569a18efc9 (diff) |
Hide markup symbols.
-rw-r--r-- | smart-documents.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/smart-documents.org b/smart-documents.org index e1dbc51..c598b57 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -1045,6 +1045,23 @@ We then set values for many other Org-related cosmetic symbols. 'help-echo "Unfold section.")) #+END_SRC +*** Hide markup symbols + +We hide markup symbols. + +#+BEGIN_SRC emacs-lisp :tangle yes + (setq org-hide-emphasis-markers t) +#+END_SRC + +*** Pretty LaTeX symbols + +We display LaTeX entities as UTF8 symbols \rArr this is a slick idea to +further make Emacs look like the exported PDF. + +#+BEGIN_SRC emacs-lisp :tangle yes + (setq org-pretty-entities t) +#+END_SRC + *** Dynamic numbering of headlines We enable the dynamic numbering of headlines in an Org buffer. We also |