{% extends 'base-docs.html' %} {% block pagecontent %}
{% raw page_content %}
{% end %} {% block pagejs %} $(document).ready(function() { // add some bootstrap classes to our markdown content // make tables look a bit better $('table').addClass('table table-sm table-striped'); $('table thead').addClass('thead-dark'); $('table > thead > tr > th:nth-child(1)').attr('width',150); // add fancy shadows for TOC $('.toc').addClass('shadow p-3 mb-5 bg-white rounded'); // make the syntax hilite bits look a bit better $('pre').addClass('p-2'); }); {% end %}