Is there a way to define an org entity in a way that it does not require a backslash?
Is there a way to define an org entity in a way that it does not require a backslash?
Specifically, I want := to show up as ≔ in my buffer, and export as such.
If I do...
(add-to-list 'org-entities-user
'(":=" "\\coloneq" t "≔" ":=" ":=" "≔"))
I need to add a backslash before the symbol. Is there a way to achieve what I want?
You're viewing a single thread.
All Comments
1 comments
Entity syntax involves backslash. As an alternative, you may define a custom export filter + custom font-lock keyword.
1 0 Reply