Html Generation includes Latex header #6
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently while running in the docker container and generating an
htmlfile, the text of the header file get's include in the<head>tag.This occurs because we need to generate a latex file first, then convert the latex file to html. Currently it tries to generate the html from the markdown files. If you run
hpa generate latexthenpandoc -f latex -t html -o Report.html Report.texthen it will properly generate html.So it seems like we should generate a latex document in the build folder then convert that to html.