Remove bibtexparser unicode conversion

It was transforming "\&" into "&", rendering the output of
pubs export unsuitable for latex rendering.
main
Fabien Benureau 9 years ago
parent a5a653becd
commit 3e3a671837

@ -39,7 +39,7 @@ def customizations(record):
:returns: -- customized record
"""
record = bp.customization.convert_to_unicode(record)
# record = bp.customization.convert_to_unicode(record) # transform \& into & ones, messing-up latex
record = bp.customization.type(record)
record = bp.customization.author(record)
record = bp.customization.editor(record)

Loading…
Cancel
Save