Created
May 5, 2013 17:20
-
-
Save totobook/5521464 to your computer and use it in GitHub Desktop.
SublimeText2のプラグインMarkdownPreviewで、MathJaxを読むようにしただけ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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