Files
org_roam/lisp/macros.el
Zaine Arch 74449c345a
All checks were successful
Build Roam Site / build (push) Successful in 30s
commits
2026-05-13 22:48:34 +01:00

23 lines
696 B
EmacsLisp

;; -----------------------------
;; Org export macros (batch-safe)
;; -----------------------------
(setq org-export-global-macros
'(
;; --- Tufte-style sidenotes ---
("sidenote"
. "@@html:<span class=\"sidenote\">$1</span>@@")
;; --- Single epigraph ---
("epigraph_single"
. "@@html:<blockquote class=\"epigraph\"><p>$1</p><footer>$2</footer></blockquote>@@")
;; --- Multi-line epigraph (optional) ---
("epigraph"
. "@@html:<blockquote class=\"epigraph\">$1</blockquote>@@")
;; --- New thought / drop cap ---
("newthought"
. "@@html:<span class=\"newthought\">$1</span>@@")
))