Hello everyone, I’m working upon my Hugo blog where I want to embed the runkit, in HTML I could simply do that by embedding,
<script src="https://embed.runkit.com" data-element-id="my-element"></script>
<div id="my-element">
console.log('Hello');
</div>
I just wanna know how can I provide the content dynamically from my Hugo markdown blogs? i.e the console.log above has to be from my blog markdown post.
Thank you!