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
title_format
The correct solution to my issue in #607 is to use the title_format configuration option.
The only problem is that this option assumes that you want:
<formatted_title> <config.underscores[0] * formatted_title_length> <rendered content>
But for markdown, we only want:
# <formatted_title> <rendered content>
The builder however doesn't have a concept of markdown or restructuredtext.
I think the most compatible solution would be to use the markdown method if the template ends with '.md', otherwise use the current method, correct?
The text was updated successfully, but these errors were encountered:
config.title_format
Successfully merging a pull request may close this issue.
The correct solution to my issue in #607 is to use the
title_format
configuration option.The only problem is that this option assumes that you want:
But for markdown, we only want:
The builder however doesn't have a concept of markdown or restructuredtext.
I think the most compatible solution would be to use the markdown method if the template ends with '.md', otherwise use the current method, correct?
The text was updated successfully, but these errors were encountered: