Add support for an org-entities global setting.

This commit is contained in:
Tom Alexander
2023-10-08 18:01:42 -04:00
parent 1df6777b0b
commit c150aa4dea
5 changed files with 474 additions and 454 deletions

View File

@@ -1,5 +1,12 @@
(dolist (var org-entities)
(when (listp var)
(message "\"%s\"," (nth 0 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))
)
)
)