Skip to content

Commit

Permalink
Merge pull request #43 from NullHypothesis/fix-html
Browse files Browse the repository at this point in the history
Swap element order.
  • Loading branch information
NullHypothesis authored May 25, 2024
2 parents 8685168 + a52d81c commit a4ec80f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit a4ec80f

Please sign in to comment.