Merge pull request #43 from NullHypothesis/fix-html

Swap element order.
This commit is contained in:
Philipp Winter 2024-05-25 11:43:13 -05:00 committed by GitHub
commit a4ec80f9aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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