You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Markdown uses indentation to create nested itemizes. The LaTeX Export only creates one
\begin{itemize}...\end{itemize} scope and ignores the indented "*" items
This is caused by the regex searching for "beginning of line followed by * or - or +" and will also affect the creation trigger of \end{itemize} (currently empty line).
Steps to reproduce:
Create a requirement with nested unordered lists and export to HTML and to LaTeX. LaTeX fails (poor Donald E. Knuth will be sad)
`
asdf
Abcd
xyz
QWERTY
`
The text was updated successfully, but these errors were encountered:
Markdown uses indentation to create nested itemizes. The LaTeX Export only creates one
\begin{itemize}...\end{itemize} scope and ignores the indented "*" items
This is caused by the regex searching for "beginning of line followed by * or - or +" and will also affect the creation trigger of \end{itemize} (currently empty line).
Steps to reproduce:
Create a requirement with nested unordered lists and export to HTML and to LaTeX. LaTeX fails (poor Donald E. Knuth will be sad)
`
`
The text was updated successfully, but these errors were encountered: