Short answer: Pandoc can include Google Tag Manager (GTM) code, but you have to handle it through custom templates.
Pandoc itself doesn’t know or care about GTM—it just builds documents. But if you’re generating HTML with it, you can totally insert GTM into the head and body sections by editing the template it uses.
GTM gives you two chunks:
<script>
that goes in the
<head>
<noscript>
iframe that goes right after the
opening <body>
You can download the default template with:
pandoc -D html > custom.html
Then edit custom.html
:
<script>
in the <head>
section:<head>
$if(title)$<title>$title$</title>
$endif$<!-- GTM HEAD CODE -->
<script>(function(w,d,s,l,i)...</script>
</head>
<noscript>
in the <body>
section:<body>
<!-- GTM BODY CODE -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-XXXX"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
$body$</body>
pandoc input.md -o output.html --template=custom.html
Boom—GTM is now baked into every page you render.
If you're trying to keep it minimal but still want analytics, you could also look into lightweight GTM alternatives like Plausible or Fathom.