Changes in / [9a7ef88:5400ad4] in sasmodels
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/compare.py
r5770493 r1fbadb2 1376 1376 path = os.path.dirname(info.filename) 1377 1377 url = "file://" + path.replace("\\", "/")[2:] + "/" 1378 rst2html.view_html_ qtapp(html, url)1378 rst2html.view_html_wxapp(html, url) 1379 1379 1380 1380 def explore(opts): -
sasmodels/rst2html.py
r2d81cfe r1fbadb2 56 56 # others don't work properly with math_output! 57 57 if math_output == "mathjax": 58 settings = {"math_output": math_output} 58 # TODO: this is copied from docs/conf.py; there should be only one 59 mathjax_path = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML" 60 settings = {"math_output": math_output + " " + mathjax_path} 59 61 else: 60 62 settings = {"math-output": math_output}
Note: See TracChangeset
for help on using the changeset viewer.