Closed cloudyluna closed 2 months ago
Pandoc only supports a subset of LaTeX input. Even just parsing TeX is turing complete, so Pandoc just parses a LaTeX-like grammar and does its best. The changelog
package is not in the subset that Pandoc supports:
Not really much you can do here. You could rewrite the TeX document in a format Pandoc can understand (e.g. using \section*
and \begin{itemize}...\end{itemize}
and similar directly).
Hi, thanks for this project! It has been very useful to me on creating changelogs to a bunch of PDFs.
I tried to compile the same input to markdown (gfm flavored) format this time, but the output it produced wasn't what I was expecting for a markdown format.
pandoc -t gfm -s input.tex -o output.md
input.tex
output.md
Did I do something wrong with pandoc or changelog package? (I'm also quite new to latex, admittedly).
Thanks.