org-gfm-toc: Wrap the TOC in a div for styling

This commit is contained in:
Vedang Manerikar 2024-05-14 12:17:18 +05:30
parent 4f774f13d3
commit 578cb33b4f

View File

@ -266,8 +266,14 @@ holding export options."
(org-gfm-format-toc headline info))
headlines "\n")
""))
(toc-tail (if headlines "\n\n" "")))
(org-trim (concat toc-string toc-tail contents "\n" (org-gfm-footnote-section info)))))
(toc-head (if headlines "<div class=\"orgtoc\">\n" ""))
(toc-tail (if headlines "\n</div>\n\n" "")))
(org-trim (concat toc-head
toc-string
toc-tail
contents
"\n"
(org-gfm-footnote-section info)))))
;;; Interactive function