##// END OF EJS Templates
create rst converter and fix some bugs
create rst converter and fix some bugs

File last commit:

r9329:938287e1
r9363:65d8b934
Show More
fullhtml.tpl
46 lines | 1.0 KiB | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'basichtml.tpl' -%}
{%- block header -%}
<html>
<head>
<meta charset="UTF-8">
<title>[{{nb.metadata.name}}]</title>
{% for css in inlining.css -%}
<style type="text/css">
{{css}}
</style>
{% endfor %}
<script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript">
</script>
<script type="text/javascript">
init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}
init_mathjax();
</script>
</head>
{%- endblock header -%}
{% block body %}
<body>{{ super() }}
</body>
{%- endblock body %}
{% block footer %}
</html>{% endblock footer %}