我们有1000多个文件和一个主题的Sphinx文档。我需要在一个页面(.rst文件)中插入一个javascript代码,就像这样。
<script>
function myFunction() {
alert("I am an alert box!");
}
</script>
<button onclick="myFunction()">Try it</button>
我怎么做呢? 我尝试了一个块和一个指令。
在你的.rst文件中试试这个。
.. raw:: html
<script>
function myFunction() {
alert("I am an alert box!");
}
</script>
<button onclick="myFunction()">Try it</button>