pcooksey / bibtex-js

BibTeX-js can parse a BibTeX-file and render it as part of an HTML file. This way, you can easily add a list of publications to your private homepage or display a list of recommended publications for a seminar. The way the entries are display can be customized using a simple template system and CSS.
MIT License
270 stars 68 forks source link

bibtexVar not correctly returning BIBTEXTYPEKEY for INPROCEEDINGS #63

Open douglasmacharet opened 4 years ago

douglasmacharet commented 4 years ago

The following code works and prints the correct bibtex key type:

<span class="bibtextypekey"></span>

However, the following operation does not work for INPROCEEDINGS types. The BIBTEXTYPEKEY is returned as undefined:

<div class="bibtexVar" extra="+BIBTEXTYPEKEY+"></div>

What I am trying to do is to use an specific css class for different bibentry types.