Hello everybody out there,

Running the following filter

function Pandoc (doc)
  nblocks = 0
  for i, block in ipairs(doc.blocks) do nblocks=nblocks+1 end
  lblock = nblocks
  for i=1,nblocks do
    block = doc.blocks[i]
    print(block.t)
  end
end

on the following document

---
title: Test
author: Author
---
# Introduction
Some text ...
![Figure 1](image.png)


prints a Figure block on Windows but a Para block on Linux.

This would mean that the output of pandoc depends on the operating system.
Is there a way to make it more independent of the operating system or am I just doing an obvious mistake?

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/e8c84ab1-4e87-4580-bf4e-dd1bb23f4c1fn%40googlegroups.com.