Open Benjamin-Lee opened 4 years ago
Hello @Benjamin-Lee
My understanding of the markdown syntax is that the correct way to include a blockquote in a list is like this:
* A list item with a blockquote:
> This is a blockquote
> inside a list item.
I tried that and am receiving the same error with the template in which the grey bar overlaps the 1. I checked to make sure panda was properly parsing the Markdown and, regardless of whether the >
is on its own line, it is still correctly catching that it is <li><blockquote>...</blockquote></li>
.
what does pandoc say, i.e. what's the result of pandoc mwe.md -o mwe.pdf
?
mwe.md:
1. >This is a quote.
2. This is the second line.
3. A list item with a blockquote:
> This is a blockquote
> inside a list item.
Pandoc correctly indents both blockquotes:
This template:
hmmm, pandoc converts the snippet in https://github.com/Wandmalfarbe/pandoc-latex-template/issues/156#issue-569568418 to
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
\begin{quote}
This is a quote.
\end{quote}
\item
This is the second line.
\end{enumerate}
which seems to be correct. so it must be an issue with the eisvogel template ...
For example,
generates:
Regular pandoc handles it as:
Hope this issue makes sense. Thanks for the great template!