Skip to content

Commit

Permalink
Fix order of HTML elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
NullHypothesis committed May 25, 2024
1 parent 2fe526c commit 78bb4ee
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 @@ -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>")
Expand Down

0 comments on commit 78bb4ee

Please sign in to comment.