diff options
| author | John MacFarlane <[email protected]> | 2025-12-04 22:55:19 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-12-04 22:55:19 +0100 |
| commit | dc4f624584e66c7a74a65e4cf5d7d8f63517e2fc (patch) | |
| tree | 8321f07cbb0870542c6cfffd57c1d8629420a9a9 | |
| parent | 78929adb4db868ef3dc534463f52eb7756b3fcfb (diff) | |
Fix biblatex parsing of `@commentary` entries.
Previously they were skippedas comments due to a bug.
Closes #11322.
| -rw-r--r-- | src/Text/Pandoc/Citeproc/BibTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Citeproc/BibTeX.hs b/src/Text/Pandoc/Citeproc/BibTeX.hs index ba380da3d..c11c4013a 100644 --- a/src/Text/Pandoc/Citeproc/BibTeX.hs +++ b/src/Text/Pandoc/Citeproc/BibTeX.hs @@ -821,7 +821,7 @@ bibComment :: BibParser () bibComment = do cistring "comment" spaces' - void inBraces <|> bibSkip <|> return () + void inBraces bibPreamble :: BibParser () bibPreamble = do |
