I convert my markdown files to reveal.js presentation using pandoc (I'm on a mac):
pandoc -s -S -t revealjs --mathjax -o test.html test.md
Unfortunately horizontal lines (e.g. in \frac{}{} or \sqrt{} environments) seem to be offset and equations look garbled. Using a local version of mathjax everything looks fine, i.e.
pandoc -s -S -t revealjs --mathjax="MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML" -o test.html test.md
I attached the markdown file and the html presentation using the remote source of Mathjax.
It would be great if you can tell me whats going on here. Thanks a lot.