We have sphinx documentation with 1000+ files and a single theme. In only one page (.rst file) I need to insert a javascript code, like that:
<script>
function myFunction() {
alert("I am an alert box!");
}
</script>
<button onclick="myFunction()">Try it</button>
How could I do that? I tried a block and a directive so far.