From e5fd4bf9e652a637dd4a1b0b635bb4769ebe2a92 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 6 Oct 2023 20:21:30 -0400 Subject: [PATCH] Show the full org-mode links. --- ansible/roles/emacs/files/elisp/lang-org.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/roles/emacs/files/elisp/lang-org.el b/ansible/roles/emacs/files/elisp/lang-org.el index 6466935..65bd0c5 100644 --- a/ansible/roles/emacs/files/elisp/lang-org.el +++ b/ansible/roles/emacs/files/elisp/lang-org.el @@ -20,6 +20,9 @@ org-confirm-babel-evaluate nil ) + ;; Show the full source of org-mode links instead of condensing them. I.E. render "[[foo]]" instead of "foo" + (setq org-descriptive-links nil) + ;; Only interpret _ and ^ and sub and superscripts if they're of the form _{subscript} and ^{superscript} (setq org-export-with-sub-superscripts '{}) ;; Don't include a "validate" link at the bottom of html export