@@ -2,6 +2,8 @@ title: Quantitative Economics with Python
22author : Thomas J. Sargent & John Stachurski
33logo : _static/qe-logo-large.png
44description : This website presents a set of lectures on quantitative economic modeling, designed and written by Thomas J. Sargent and John Stachurski.
5+ analytics :
6+ google_analytics_id : UA-54984338-10
57
68parse :
79 myst_enable_extensions :
@@ -34,34 +36,37 @@ latex:
3436sphinx :
3537 extra_extensions : [sphinx_multitoc_numbering, sphinxext.rediraffe, sphinx_tojupyter, sphinxcontrib.youtube, sphinx.ext.todo, sphinx_exercise, sphinx_togglebutton]
3638 config :
37- nb_render_priority :
38- html :
39- - " application/vnd.jupyter.widget-view+json"
40- - " application/javascript"
41- - " text/html"
42- - " text/latex"
43- - " image/svg+xml"
44- - " image/png"
45- - " image/jpeg"
46- - " text/markdown"
47- - " text/plain"
48- jupyter :
49- - " application/vnd.jupyter.widget-view+json"
50- - " application/javascript"
51- - " text/html"
52- - " text/latex"
53- - " image/svg+xml"
54- - " image/png"
55- - " image/jpeg"
56- - " text/markdown"
57- - " text/plain"
58- latex :
59- - " text/latex"
60- - " application/pdf"
61- - " image/png"
62- - " image/jpeg"
63- - " text/markdown"
64- - " text/plain"
39+ nb_mime_priority_overrides : [
40+ # HTML
41+ ['html', 'application/vnd.jupyter.widget-view+json', 10],
42+ ['html', 'application/javascript', 20],
43+ ['html', 'text/html', 30],
44+ ['html', 'text/latex', 40],
45+ ['html', 'image/svg+xml', 50],
46+ ['html', 'image/png', 60],
47+ ['html', 'image/jpeg', 70],
48+ ['html', 'text/markdown', 80],
49+ ['html', 'text/plain', 90],
50+ # Jupyter Notebooks
51+ ['jupyter', 'application/vnd.jupyter.widget-view+json', 10],
52+ ['jupyter', 'application/javascript', 20],
53+ ['jupyter', 'text/html', 30],
54+ ['jupyter', 'text/latex', 40],
55+ ['jupyter', 'image/svg+xml', 50],
56+ ['jupyter', 'image/png', 60],
57+ ['jupyter', 'image/jpeg', 70],
58+ ['jupyter', 'text/markdown', 80],
59+ ['jupyter', 'text/plain', 90],
60+ # LaTeX
61+ ['latex', 'text/latex', 10],
62+ ['latex', 'application/pdf', 20],
63+ ['latex', 'image/png', 30],
64+ ['latex', 'image/jpeg', 40],
65+ ['latex', 'text/markdown', 50],
66+ ['latex', 'text/plain', 60],
67+ # Link Checker
68+ ['linkcheck', 'text/plain', 10],
69+ ]
6570 html_favicon : _static/lectures-favicon.ico
6671 html_theme : quantecon_book_theme
6772 html_static_path : ['_static']
@@ -75,7 +80,6 @@ sphinx:
7580 og_logo_url : https://assets.quantecon.org/img/qe-og-logo.png
7681 description : This website presents a set of lectures on quantitative economic modeling, designed and written by Thomas J. Sargent and John Stachurski.
7782 keywords : Python, QuantEcon, Quantitative Economics, Economics, Sloan, Alfred P. Sloan Foundation, Tom J. Sargent, John Stachurski
78- google_analytics_id : UA-54984338-10
7983 launch_buttons :
8084 colab_url : https://colab.research.google.com
8185 mathjax3_config :
0 commit comments