Emacs org-mode: Export underscore problem
I am writing this site in Emacs, exporting org-mode files to html. Nothing fancy really, barely modified publish file, the outlook is just CSS. Recently I found a problem, where I use underscore "_" in a page, and the HTML output just wasn't right.
I searched and soon I've found the solution on Stackoverflow. There are many, but you can do it with a simple line, just insert this:
#+OPTIONS: ^:nil
With this one line, basically you disable superscripts and subscripts in that one file. As I am not using either of them, for me this is a perfect solution.