From: Philipp Falk Date: Wed, 7 Sep 2016 09:15:36 +0000 (+0200) Subject: bibtex.py: add id tag to category headings X-Git-Url: https://vcs.mathematik.uni-freiburg.de/gitweb//gitweb/index.cgi?a=commitdiff_plain;h=ed99858c5263861d31ac5af8379296a42475faf2;p=philipp%2Fscripts bibtex.py: add id tag to category headings --- diff --git a/bibtex.py b/bibtex.py index 606989f..1e81b13 100755 --- a/bibtex.py +++ b/bibtex.py @@ -52,7 +52,7 @@ if __name__ == '__main__': (html, bib) = get_publications(tmpdir, cat, basename) if html is None: continue - outhtml.append('

{}

'.format(name)) + outhtml.append('

{}

'.format(cat, name)) outhtml.append(html) outbibl.append(bib) os.chdir(cwd)