Specifically, I am using ox-hugo to write my blog in Hugo.
I am writing a lot about functional programming and have a lot of code snippets in the Racket language. It uses a lot of Lambda-syntax and I would like the lambda
keyword to be exported using the actual Greek letter for Lambda (λ). Why? Cause I like the aesthetics, and it's more readable if you have a lot of them in a snippet.
So, basically, this code block: scheme (product (lambda (i) i) 1 inc 6)
Should be exported to HTML like this: scheme (product (λ (i) i) 1 inc 6)
Currently, it just looks the same in HTML as it does in the code block.
Any help is appreciated!
(Oh, and just so I'm following the rules here: I am doing this all in DOOM Emacs.)