Skip to content

Commit 78bb4ee

Browse files
Fix order of HTML elements.
1 parent 2fe526c commit 78bb4ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ func parseCiteName(line string) string {
9797
}
9898

9999
func run(w io.Writer, bibEntries []bibEntry) {
100-
fmt.Fprintln(w, "<div id='container'>")
101100
fmt.Fprint(w, header())
101+
fmt.Fprintln(w, "<div id='container'>")
102102
makeBib(w, bibEntries)
103103
fmt.Fprint(w, footer())
104104
fmt.Fprintln(w, "</div>")

0 commit comments

Comments
 (0)