mirror of
https://github.com/larstvei/ox-gfm.git
synced 2024-11-26 09:38:31 +00:00
Add org-gfm-footnote-section
Adds an org-gfm-footnote-section function, modeled on org-html-footnote-section, to render the footnote section as cleaned-up Markdown.
This commit is contained in:
parent
d856378748
commit
a46628aeb6
32
ox-gfm.el
32
ox-gfm.el
@ -242,6 +242,36 @@ plist used as a communication channel."
|
|||||||
(concat indent "- [" title "]" "(#" anchor ")")))
|
(concat indent "- [" title "]" "(#" anchor ")")))
|
||||||
|
|
||||||
|
|
||||||
|
;;;; Footnote section
|
||||||
|
|
||||||
|
(defun org-gfm-footnote-section (info)
|
||||||
|
"Format the footnote section.
|
||||||
|
INFO is a plist used as a communication channel."
|
||||||
|
(let* ((fn-alist (org-export-collect-footnote-definitions info))
|
||||||
|
(fn-alist
|
||||||
|
(loop for (n type raw) in fn-alist collect
|
||||||
|
(cons n (org-trim (org-export-data raw info))))))
|
||||||
|
(when fn-alist
|
||||||
|
(format
|
||||||
|
"## %s\n%s"
|
||||||
|
"Footnotes"
|
||||||
|
(format
|
||||||
|
"\n%s\n"
|
||||||
|
(mapconcat
|
||||||
|
(lambda (fn)
|
||||||
|
(let ((n (car fn)) (def (cdr fn)))
|
||||||
|
(format
|
||||||
|
"%s %s\n"
|
||||||
|
(format
|
||||||
|
(plist-get info :html-footnote-format)
|
||||||
|
(org-html--anchor
|
||||||
|
(format "fn.%d" n)
|
||||||
|
n
|
||||||
|
(format " class=\"footnum\" href=\"#fnr.%d\"" n)
|
||||||
|
info))
|
||||||
|
def)))
|
||||||
|
fn-alist
|
||||||
|
"\n"))))))
|
||||||
|
|
||||||
|
|
||||||
;;;; Template
|
;;;; Template
|
||||||
@ -254,7 +284,7 @@ holding export options."
|
|||||||
(headlines (and depth (org-export-collect-headlines info depth)))
|
(headlines (and depth (org-export-collect-headlines info depth)))
|
||||||
(toc-string (or (mapconcat 'org-gfm-format-toc headlines "\n") ""))
|
(toc-string (or (mapconcat 'org-gfm-format-toc headlines "\n") ""))
|
||||||
(toc-tail (if headlines "\n\n" "")))
|
(toc-tail (if headlines "\n\n" "")))
|
||||||
(org-trim (concat toc-string toc-tail contents "\n" (org-html-footnote-section info)))))
|
(org-trim (concat toc-string toc-tail contents "\n" (org-gfm-footnote-section info)))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user