aboutsummaryrefslogtreecommitdiff
path: root/test/command/4159.md
AgeCommit message (Collapse)AuthorFilesLines
2018-01-13LaTeX reader: pass through macro defs in rawLaTeXBlock...John MacFarlane1-1/+2
even if the `latex_macros` extension is set. This reverts to earlier behavior and is probably safer on the whole, since some macros only modify things in included packages, which pandoc's macro expansion can't modify. Closes #4246.
2017-12-22`latex_macros` extension changes.John MacFarlane1-2/+1
Don't pass through macro definitions themselves when `latex_macros` is set. The macros have already been applied. If `latex_macros` is enabled, then `rawLaTeXBlock` in Text.Pandoc.Readers.LaTeX will succeed in parsing a macro definition, and will update pandoc's internal macro map accordingly, but the empty string will be returned. Together with earlier changes, this closes #4179.
2017-12-15Fixed regression in LateX tokenization.John MacFarlane1-0/+8
This mainly affects the Markdown reader when parsing raw LaTeX with escaped spaces. Closes #4159.