aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/EndNote.hs
AgeCommit message (Collapse)Author
2025-12-06Implement `reset-citation-positions` class on headings.reset-positionJohn MacFarlane
When the `reset-citation-positions` class is added to a top-level heading, `--citeproc` will reset position information at that point in the document. This is needed in order to ensure that the first citation in a chapter to a work that has been cited in a previous chapter will not be in abbreviated form. Requires a dependency on a development version of citeproc.
2025-07-20Use latest dev citeproc and update the default CSL...John MacFarlane
from the latest chicago-author-date.csl. (Note that this goes from the 17th to the 18th edition.) Update tests.
2024-04-25Update copyright dates to 2024.John MacFarlane
2024-04-23Docx reader: issue warning rather than error...John MacFarlane
when we can't parse EndNote citations. See #8433.
2023-01-10Update copyright years, it's 2023!Albert Krewinkel
2022-11-10Better error when parsing EndNote references fails.John MacFarlane
(Tell them that it concerns EndNote references.)
2022-10-02Add T.P.Citeproc.Name.John MacFarlane
This exports `toName`, which previously had been part of T.P.Citeproc.BibTeX. T.P.Readers.RIS,EndNote can now depend on this module without transitively depending on the LaTeX reader, which is used in T.P.Citeproc.BibTeX. Closes #8345.
2022-02-04EndNote reader: add nocite as the other bib format readers do.John MacFarlane
2022-02-04Support Prefix, Suffix, Pages in endnote ADDINs.John MacFarlane
2022-02-04Got endnote citations working in docx...John MacFarlane
Still to do: prefix, suffix, locator.
2022-02-04EndNote: export readEndNoteXMLCitation...John MacFarlane
instead of readEndNoteXMLReferences. This is the function we'll need in the docx reader. We still need to implement locator, prefix, and suffix.
2022-02-04Add endnote XML reader.John MacFarlane
New input format: endnotexml New reader module: Text.Pandoc.Readers.EndNote, exporting `readEndNoteXML` and `readEndNoteXMLReferences`. [API change] This reader is still a bit rudimentary, but it should get be good enough to be helpful.