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
Add a directive or setting that allows markdown-pdf to set the title attribute of a generated file to be an arbitrary string.
markdown-pdf
title
If the filename of the source file is 'index.md', the current behavior is to generate an html file with the following title attribute:
<title>index.md</title>
This means that after each change to the source file, the resulting .html file must be edited by hand to change the title attribute.
.html
If the desired title is "Some Interesting Page", make it possible for the generated file to emit the following title attribute:
<title>Some Interesting Page</title>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a directive or setting that allows
markdown-pdf
to set thetitle
attribute of a generated file to be an arbitrary string.If the filename of the source file is 'index.md', the current behavior is to generate an html file with the following
title
attribute:This means that after each change to the source file, the resulting
.html
file must be edited by hand to change thetitle
attribute.If the desired title is "Some Interesting Page", make it possible for the generated file to emit the following
title
attribute:The text was updated successfully, but these errors were encountered: