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.


✅ How to add Google Tag Manager to Pandoc output:

1. Get your GTM code

GTM gives you two chunks:


2. Use a custom Pandoc HTML template

You can download the default template with:

pandoc -D html > custom.html

Then edit custom.html:

Insert the <script> in the <head> section:

<head>
  $if(title)$
    <title>$title$</title>
  $endif$
  <!-- GTM HEAD CODE -->
  <script>(function(w,d,s,l,i)...</script>
</head>

Insert the <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>

3. Use your custom template when converting:

pandoc input.md -o output.html --template=custom.html

Boom—GTM is now baked into every page you render.


⚠️ Heads up


If you're trying to keep it minimal but still want analytics, you could also look into lightweight GTM alternatives like Plausible or Fathom.