We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac25ea4 commit 64b308fCopy full SHA for 64b308f
1 file changed
bibtexparser/splitter.py
@@ -174,8 +174,9 @@ def _is_escaped():
174
# Handle "escape" characters
175
if next_mark.group(0) == '"' and not num_open_curls > 0:
176
# Check for {"} escape sequence when inside quotes (issue #487).
177
- # Per BibTeX spec, {"} represents a literal quote in a quoted field.
178
- # We verify this is a true escape by checking:
+ # Per https://tug.ctan.org/info/bibtex/tamethebeast/ttb_en.pdf,
+ # {"} represents a literal quote in a quoted field.
179
+ # We verify this by checking:
180
# 1. We're inside quotes
181
# 2. The " is surrounded by { and }
182
# 3. There's more content after the } (i.e., pos+2 is in bounds)
0 commit comments