mirror of
https://github.com/NullHypothesis/censorbib.git
synced 2025-07-23 14:41:07 -04:00
Fix order of HTML elements.
This commit is contained in:
parent
2fe526c0c0
commit
78bb4eee1b
1 changed files with 1 additions and 1 deletions
|
@ -97,8 +97,8 @@ func parseCiteName(line string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func run(w io.Writer, bibEntries []bibEntry) {
|
func run(w io.Writer, bibEntries []bibEntry) {
|
||||||
fmt.Fprintln(w, "<div id='container'>")
|
|
||||||
fmt.Fprint(w, header())
|
fmt.Fprint(w, header())
|
||||||
|
fmt.Fprintln(w, "<div id='container'>")
|
||||||
makeBib(w, bibEntries)
|
makeBib(w, bibEntries)
|
||||||
fmt.Fprint(w, footer())
|
fmt.Fprint(w, footer())
|
||||||
fmt.Fprintln(w, "</div>")
|
fmt.Fprintln(w, "</div>")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue