From 124c96cfdd31a7c357c65e4982be178087568971 Mon Sep 17 00:00:00 2001 From: mez Date: Sat, 3 May 2025 18:34:36 +0100 Subject: [PATCH] Fix sub bullets in org-format --- custom/org-format.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/custom/org-format.el b/custom/org-format.el index 96ab812..ab0e27b 100644 --- a/custom/org-format.el +++ b/custom/org-format.el @@ -68,6 +68,9 @@ (while (re-search-forward "”/>" nil t) (replace-match "\"/>")) (goto-char (point-min)) + (while (re-search-forward "\n  –" nil t) + (replace-match "\n -")) + (goto-char (point-min)) (while (re-search-forward "=\"\\([^>]*\\)”" nil t) (replace-match "=\"\\1\"")))