Releases: renanbr/bibtex-parser
Releases · renanbr/bibtex-parser
1.0.2
1.0.1
1.0.0
0.6.0
0.5.0
Added
- Issue #17: Ability to add multiple processors to the
Listener
throughaddTagValueProcessor()
(@andrechalom); - Issue #15: Author name processor,
RenanBr\BibTexParser\Processor\AuthorProcessor
(@andrechalom); - PR #22: Keywords processor,
RenanBr\BibTexParser\Processor\KeywordsProcessor
; - Issue #19: LaTeX to Unicode processor,
RenanBr\BibTexParser\Processor\LatexToUnicodeProcessor
.
Changed
- Issue #17: Deprecate
Listener::setTagValueProcessor()
(@andrechalom).
0.4.0
0.3.0
0.2.0
Fixed
- PR #1: Trailing comma causes
ParseException
(@raphael-st); - Issue #4:
_
character into tag name causesParseException
.
Added
- Issue #2: Original BibTeX entries are sent to the listeners with the status
Parser::ORIGINAL_ENTRY
just after each entry reading is done; Listener::export()
produces entries with an additional key called_original
, which contains the original BibTex entry;- Ability to change the tag name case through
Listener::setTagNameCase()
.