<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XX-XX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-XX-XX');
</script>
After compiling with fiddly I get this instead:
<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-XX-XX"></script>
<script>
window.dataLayer = window.dataLayer || <a href="undefined"></a>;
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());<br /> gtag('config', 'UA-XX-XX');
</script>
The [] has ben changed to <a href="undefined"></a>
Hi,
In my README.md I have the google analytics code:
After compiling with fiddly I get this instead:
The
[]
has ben changed to<a href="undefined"></a>
What can I do to escape it ?