Hi folks,
I have recently discovered Hugo via markdowntempates and love the potential to use Hugo as a way to share reports and dynamic charts that I build in R. The HTML snippet that is generated for the chart pretty much always has the same format like this:
<div id="htmlwidget-3967" style="width:100%;height:auto;" class="datatables"></div>
<script type="application/json" data-for="htmlwidget-3967">{"x":{"data":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42]}}</script>
The div
tag renders fine when Hugo processes the md file to HTML, but not the script tag. The double quotes end up as {“x”:{“data”:
in the HTML, thereby breaking the chart rendering.
I have been able to save the code into a separate JSON file and use {{ $dataJ := getJSON "url" }}
but am wondering if there is a way to print the script tag directly to a page.
If you can point me in the right direction, I appreciate it!
Michael