I used a Bibtex to HTML Perl converter to parse a bibtex entry file and create an HTML file with a table to be displayed on a website containing the bibtex entries.
The problem is the HTML output file is sorted in the same way the bibtex was sorted, from older to newer dates, and I need to change the order of the html table elements based on the publish year which is not an entry in a row itself
example:
<tr>
<td class="publink">
<a href="blabla">html</a><br/>
<a href="blabla">pdf (ams)</a><br/>
<a href="blabla">pdf</a></td>
<td class="pubname">
<b><a href="blabla">STOCHASTISCHE MODELLE FÜR DIE BETRIEBLICHE PLANUNG</a></b> <br/>
<a href="blabla">R. Hilfer</a><br/>
<a href="blabla">GBI -- Verlag, München, 1985</a></td> </tr>
<tr>
Here i simply want to sort with the year so extract this 1985 and all other years in the other entries and sort that from the file to create a new and sorted html file..
I hope someone can give me any suggestions!
Thanks!