Is it possible to embed a p5js sketch into a Grav page? (p5js is a version of the Processing language for Javascript). On a standard HTML page, I would use the following to display the p5js sketch:
<script src="p5.js"></script>
<script src="fallingEnvelopes.js"></script>
<script src="envelope.js"></script>
<script src="envelopeSystem.js"></script>
p5.js is the library, and the other files make up my animated sketch. Is there a way to use this in Grav?