Merge pull request #40 from NullHypothesis/fix-parser

Fix order of HTML elements.
This commit is contained in:
Philipp Winter 2024-05-25 09:09:38 -05:00 committed by GitHub
commit ab8b7206d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -97,8 +97,8 @@ func parseCiteName(line string) string {
}
func run(w io.Writer, bibEntries []bibEntry) {
fmt.Fprintln(w, "<div id='container'>")
fmt.Fprint(w, header())
fmt.Fprintln(w, "<div id='container'>")
makeBib(w, bibEntries)
fmt.Fprint(w, footer())
fmt.Fprintln(w, "</div>")