Omit the type attribute of script tag

This commit is contained in:
Frank Yu 2021-07-07 15:16:29 +08:00 committed by GitHub
parent e83581dc60
commit c2001adf83

View file

@ -256,7 +256,7 @@ the filter to render data inside ``<script>`` tags.
.. sourcecode:: html+jinja
<script type=text/javascript>
<script>
const names = {{ names|tosjon }};
renderChart(names, {{ axis_data|tojson }});
</script>