From af38539d5006da9884993aa8bbf903c6d82a7965 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 15 Oct 2025 18:00:11 +0200 Subject: [PATCH] Do not hide URLs in Markdown by default This looks irritating for images, and also makes spotting typos in URLs more difficult. Surprisingly, I don't have these issues in Org mode, so maybe this is just old habits dying hard here. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 1964674..45e6584 100644 --- a/init.el +++ b/init.el @@ -618,7 +618,7 @@ split horizontally again, but this extra work should not matter much." :init (setopt markdown-use-pandoc-style-yaml-metadata t markdown-command "pandoc --standalone --toc" markdown-fontify-code-blocks-natively t - markdown-hide-urls t + markdown-hide-urls nil markdown-asymmetric-header t markdown-list-indent-width 2 markdown-special-ctrl-a/e t)