-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ten FOCI'24 issue 2 papers, two PETS'24 papers, and support accent characters in cite names. #51
Conversation
This commit enables the support of accent characters in the bib key: > @inproceedings{Müller2024a, Without this commit, the accent characters will cause the parse error, e.g.: > Cannot parse valid bibtex file example/biblatex-examples.bib: parse failed at 1676:17: syntax error One real-world use case is available at: NullHypothesis/censorbib#51.
I opened the pull request: nickng/bibtex#25 |
* PETS publication page: https://www.petsymposium.org/foci/2024/ * FOCI program: https://foci.community/foci24.html#2024-summer-program * Net4People post: net4people/bbs#376 I do not include the three papers in Session III: Privacy Enhancing Technologies, as they are out of scope of Internet censorship.
A new commit introduces a cite name that contains an accent character: @inproceedings{Müller2024a, It will cause the bibtex parser to fail with the following two errors: failed to extract cite name of: @inproceedings{Müller2024a, and parse failed at 55:17: syntax error: unexpected $end, expecting tCOMM The second error is an upstream limitation, which I will try to get it merged to the upstream: https://github.com/nickng/bibtex.
This is to support accent characters in bib key: https://github.com/nickng/bibtex/releases/tag/v1.4.0
Selected from: net4people/bbs#376.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor comment but looks good! Thanks for your work!
I have now removed Thank you so much for your review, @NullHypothesis ! |
I added two PETS'24 papers in this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noice noice, looks great!
This pull request contains two major components:
I do not include the three papers in Session III: Privacy Enhancing Technologies, as they are out of scope of Internet censorship.
A new commit introduces a cite name that contains an accent character:
It will cause the bibtex parser to fail with the following two errors:
and
We have both errors fixed in this commit. The second error is an upstream limitation, which I will try to get it merged to the upstream: https://github.com/nickng/bibtex.