diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-01-26 22:45:57 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-01-26 22:45:57 -0800 |
commit | 98c2a52b4ee6c833c0a2f2652386cec024e377eb (patch) | |
tree | 0ab472a108a7ea001eb322e690dc5a2449caa554 /test/command | |
parent | 12bc6625352aaece955f9f0700f88e9280721ced (diff) | |
download | pandoc-98c2a52b4ee6c833c0a2f2652386cec024e377eb.tar.gz |
Clean up BibTeX parsing.
Previously there was a messy code path that gave strange
results in some cases, not passing through raw tex but
trying to extract a string content. This was an artefact
of trying to handle some special bibtex-specific commands
in the BibTeX reader. Now we just handle these in the
LaTeX reader and simplify parsing in the BibTeX reader.
This does mean that more raw tex will be passed through
(and currently this is not sensitive to the `raw_tex`
extension; this should be fixed).
Closes #7049.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/biblatex-cotton.md | 6 | ||||
-rw-r--r-- | test/command/biblatex-murray.md | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/test/command/biblatex-cotton.md b/test/command/biblatex-cotton.md index 51c3ee2f4..7a7a2e296 100644 --- a/test/command/biblatex-cotton.md +++ b/test/command/biblatex-cotton.md @@ -43,9 +43,9 @@ Cotton, F. A., Wilkinson, G., Murillio, C. A., & Bochmann, M. (1999). --- nocite: "[@*]" references: -- annote: A book entry with author authors and an edition field. By - default, long author and editor lists are automatically truncated. - This is configurable +- annote: A book entry with `\arabic{author}`{=latex} authors and an + edition field. By default, long author and editor lists are + automatically truncated. This is configurable author: - family: Cotton given: Frank Albert diff --git a/test/command/biblatex-murray.md b/test/command/biblatex-murray.md index 78081c6fe..8242e4822 100644 --- a/test/command/biblatex-murray.md +++ b/test/command/biblatex-murray.md @@ -55,8 +55,9 @@ properties as a function of core size. *Langmuir*, *14*(1), 17–30. --- nocite: "[@*]" references: -- annote: An article entry with author authors. By default, long author - and editor lists are automatically truncated. This is configurable +- annote: An article entry with `\arabic{author}`{=latex} authors. By + default, long author and editor lists are automatically truncated. + This is configurable author: - family: Hostetler given: Michael J. |