Open joshuahhh opened 1 year ago
I think you're supposed to escape ampersands in bibliography URLs. (Seems like LaTeX yells at me when I don't.)
But something in LP's bibliography pipeline messes them up. In my .md:
.md
@misc{wikipedia-grafting, author = "{Wikipedia contributors}", title = "Grafting --- {W}ikipedia{,} The Free Encyclopedia", year = "2022", url = "https://en.wikipedia.org/w/index.php?title=Grafting\&oldid=1095365064", note = "[Online; accessed 01-September-2022]" }
In the output .bib:
.bib
@misc{wikipedia-grafting, author = {{Wikipedia contributors}}, year = {2022}, note = {[Online; accessed 01-September-2022]}, title = {Grafting --- {Wikipedia}, {The} {Free} {Encyclopedia}}, howpublished = {https://en.wikipedia.org/w/index.php?title=Grafting%5C&oldid=1095365064}, }
There's actually a bunch of things getting twiddled with here, which is a bit surprising. But the important bit is that \& becomes %5C&, which doesn't work.
\&
%5C&
I think you're supposed to escape ampersands in bibliography URLs. (Seems like LaTeX yells at me when I don't.)
But something in LP's bibliography pipeline messes them up. In my
.md
:In the output
.bib
:There's actually a bunch of things getting twiddled with here, which is a bit surprising. But the important bit is that
\&
becomes%5C&
, which doesn't work.