Replace remaining ; with *
This way org-export makes headers out of items that start with `;;;'.
This commit is contained in:
parent
5189acf5d9
commit
477e7fac3a
1 changed files with 3 additions and 2 deletions
5
edocs.el
5
edocs.el
|
@ -189,8 +189,9 @@ KNOWN-SYMBOLS is used for referencing symbols found in other
|
||||||
parts of the module."
|
parts of the module."
|
||||||
(edocs--format-text
|
(edocs--format-text
|
||||||
(replace-regexp-in-string
|
(replace-regexp-in-string
|
||||||
"^;; " "" (replace-regexp-in-string
|
";" "*" (replace-regexp-in-string
|
||||||
";;; Commentary:\n+" "" cmt)) known-symbols))
|
"^;; " "" (replace-regexp-in-string
|
||||||
|
";;; Commentary:\n+" "" cmt))) known-symbols))
|
||||||
|
|
||||||
(defun edocs--format-doc (doc known-symbols)
|
(defun edocs--format-doc (doc known-symbols)
|
||||||
"Perform formatting operations on DOC or on DOC's `cdr'.
|
"Perform formatting operations on DOC or on DOC's `cdr'.
|
||||||
|
|
Loading…
Reference in a new issue