mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
* reuse README intro section in doc * [doc] Why LibCST? * reuse README intro section in doc * [doc] Why LibCST?
14 lines
346 B
HTML
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 %}
|