organic/elisp_snippets/dump_org_entities.el

13 lines
439 B
EmacsLisp
Raw Normal View History

2023-08-29 19:10:27 +00:00
(dolist (var org-entities)
(when (listp var)
(message "EntityDefinition {name: %s, latex_math_mode: %s, latex: %s, html: %s, ascii: %s, utf8: %s},"
(prin1-to-string (nth 0 var))
(if (nth 2 var) "true" "false")
(prin1-to-string (nth 1 var))
(prin1-to-string (nth 3 var))
(prin1-to-string (nth 4 var))
(prin1-to-string (nth 6 var))
)
2023-08-29 19:10:27 +00:00
)
)