Suggested corrections/updates to BibTeX.js translator
[edit: moved this from Site Translator to Import / Export, as I notice the latest BibTeX.js still has these omissions. Also corrected the mapping itself (had neglected the braces).]
Hopefully this is the right place to put this.
I found today that the Scandinavian letters ø and Ø are missing from the BibTeX translator mapping table. I added them to my local copy successfully, so thought I'd offer them here:
1. added to var mappingTable:
"\u00D8":"{\\O}", // LATIN CAPITAL LETTER O WITH STROKE
"\u00F8":"{\\o}", // LATIN SMALL LETTER O WITH STROKE
2. added to var reversemappingTable:
"{\\O}" : "\u00D8", // LATIN CAPITAL LETTER O WITH STROKE
"{\\o}" : "\u00F8", // LATIN SMALL LETTER O WITH STROKE
Cheers.
Hopefully this is the right place to put this.
I found today that the Scandinavian letters ø and Ø are missing from the BibTeX translator mapping table. I added them to my local copy successfully, so thought I'd offer them here:
1. added to var mappingTable:
"\u00D8":"{\\O}", // LATIN CAPITAL LETTER O WITH STROKE
"\u00F8":"{\\o}", // LATIN SMALL LETTER O WITH STROKE
2. added to var reversemappingTable:
"{\\O}" : "\u00D8", // LATIN CAPITAL LETTER O WITH STROKE
"{\\o}" : "\u00F8", // LATIN SMALL LETTER O WITH STROKE
Cheers.