I would like to embed a Sage Cell in a webpage whose content comes from a GitHub .py
file, so that changes in this file are immediately shown in the webpage. I have tried to use javascript
/ jquery
like this (with the standard scripts in the head) and with some variations:
<div class="sage"><script type="text/x-sage" id="sage1"></script></div>
<script>$('#sage1').load("https://rawgit.com/path_to_the_file.py");</script>
and it sometimes work, but not always. I guess it has to do with the order of all the scripts involved in the process. Which would be the most appropiate and clean way to inject such code in a Sage Cell?