bibtex icon indicating copy to clipboard operation
bibtex copied to clipboard

Basic parser for bibtex

Results 6 bibtex issues
Sort by recently updated
recently updated
newest added

In case where there is text outside of entries, parsing silently fails and no entries are parsed. Example, which delivers 0 entries after parsing: ``` % Encoding: UTF-8 @article{CitekeyArticle, author...

JabRef for managing BibTeX-libraries can add special settings in `@Comment`-Entries at the end of the file, e.g. `@Comment{jabref-meta: databaseType:biblatex;}`. Parsing these breaks with an error `unknown string variable: jabref-meta:`. While...

This is my attempt at solving #18 . Feedback is welcome. (I used the `golang.org/x/tools/cmd/goyacc` version of goyacc)

In the attached snippet from `bibtex.go:274` log.Fatalf is called to handle an undefined situation. This gives the caller no chance to recover. I think this should be at least replaced...

Apparently the official BibTex spec says that months should be three-letter abbreviations like jan, feb etc, not in {}, and then when you run BibTex it localizes these in your...

Input bibtex @article{abcd, title = "Title", author = "Doe, John", howpublished = {\url{http://example.com/}}, notes = "\url{https://google.com/}", } Output bibtex @article{abcd, title = "Title", author = "Doe, John", howpublished = {\url{http://example.com/}},...