Closed tsunyinlam closed 1 day ago
When converting a LaTeX file containing a simple itemize environment to Markdown using Pandoc 3.5 on macOS, extra blank lines are introduced between list items. Given the following LaTeX input:
itemize
\begin{itemize} \item a \item b \end{itemize}
and command pandoc test.tex -o test.md I get
pandoc test.tex -o test.md
- a - b
I expected to get the following instead.
LaTeX doesn't distinguish between "tight" and "loose" lists, so we make it loose.
When converting a LaTeX file containing a simple
itemize
environment to Markdown using Pandoc 3.5 on macOS, extra blank lines are introduced between list items. Given the following LaTeX input:and command
pandoc test.tex -o test.md
I getI expected to get the following instead.