coldnew / hexo-renderer-org

Hexo renderer plugin for emacs org-mode
GNU General Public License v3.0
165 stars 38 forks source link

Prevent LaTeX from being tweaked #72

Open michaelcadilhac opened 5 years ago

michaelcadilhac commented 5 years ago

For KaTeX to work well, LaTeX blocks should be treated as normal text. For that, I had to put:

;; Disable special treatment of mathematics
(setq org-html-with-latex 'verbatim)

at the end of hexo-renderer-org.el.

Cheers!