We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a markdown file with contents:
# My Title
results in an empty PDF: test.pdf
Change the markdown to:
## My Title
or
a # My Title
And you get the expected result test.pdf
It seems like what is causing it is main.go:115
html := "<!DOCTYPE html>\n<html lang=en>\n<meta charset=UTF-8>\n<meta content=\"width=device-width,initial-scale=1\"name=viewport>\n <link rel=\"stylesheet\" href=\"" + theme + ".css\">\n" + cssLinks + "<body>\n" + htmlBody + "<script>\"h\"==document.body.innerHTML[144]&&\"1\"==document.body.innerHTML[145]&&(document.body.style.marginTop=\"-10010px\")</script>"
Specifically the script tag. Is there a reason that is included?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Create a markdown file with contents:
# My Title
results in an empty PDF: test.pdf
Change the markdown to:
## My Title
or
a # My Title
And you get the expected result test.pdf
It seems like what is causing it is main.go:115
Specifically the script tag. Is there a reason that is included?
The text was updated successfully, but these errors were encountered: