Skip to content

Commit

Permalink
Merge pull request #40 from NullHypothesis/fix-parser
Browse files Browse the repository at this point in the history
Fix order of HTML elements.
  • Loading branch information
NullHypothesis authored May 25, 2024
2 parents 2fe526c + 78bb4ee commit ab8b720
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 ab8b720

Please sign in to comment.