LibCST/docs/source/_templates/page.html
jimmylai 14ee31dc6a [doc] Why libcst?
* reuse README intro section in doc

* [doc] Why LibCST?

* reuse README intro section in doc

* [doc] Why LibCST?
2019-07-24 12:19:00 -07:00

14 lines
346 B
HTML

{% extends "!page.html" %}
{% block footer %}
<script type="text/javascript">
$(document).ready(function() {
$(".toggle > *").hide();
$(".toggle").show();
$(".toggle").click(function() {
$(this).children().toggle(200);
$(this).toggleClass("open");
})
});
</script>
{% endblock %}