mirror of
https://github.com/NullHypothesis/censorbib.git
synced 2025-07-23 06:31:22 -04:00

bibliogra.py requires Python 2, which is a pain to deal with. This commit adds a Go tool that compiles CensorBib from BibTeX to HTML. The tool does the bare minimum and is quite strict in the BibTeX format it expects.
11 lines
189 B
Go
11 lines
189 B
Go
package main
|
|
|
|
func footer() string {
|
|
return `<div id="footer">
|
|
Icons taken without modification from
|
|
<a href="https://fontawesome.com/license">Font Awesome</a>.
|
|
</div>
|
|
|
|
</body>
|
|
</html>`
|
|
}
|