Skip to content

Instantly share code, notes, and snippets.

@totobook
Created May 5, 2013 17:20
Show Gist options
  • Save totobook/5521464 to your computer and use it in GitHub Desktop.
Save totobook/5521464 to your computer and use it in GitHub Desktop.
SublimeText2のプラグインMarkdownPreviewで、MathJaxを読むようにしただけ
full_html = u'<!DOCTYPE html>'
full_html += '<html><head><meta charset="utf-8">'
full_html += self.getCSS()
# ここ追加しただけ
full_html += '<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>'
# ここまで
full_html += '</head><body>'
full_html += markdown_html
full_html += '</body>'
full_html += '</html>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment