-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
Allow specifying Markdown heading levels #56
Comments
It's currently hard coded in ChangelogGenerator. It shouldn't be too hard to change that code to accept a configuration option. |
I have just submitted a PR to allow for a configurable prefix that introduces Despite this, I cannot help but wonder if the idea of a prefix / heading level should be removed entirely, and just have it configured via the title itself - for example, to get level three headings: changelog:
repository: testorg/testrepo
sections:
- title: "### :star: New Features"
labels: ["enhancement"]
sort: "created"
- title: "### Bugs"
labels: ["bug"]
group: "test"
issues:
sort: title
exclude:
labels: ["hide"]
contributors:
title: "### Nice one!"
exclude:
names: ["philwebb"]
external_links:
- name: "### Release Notes 1"
location: "url1"
- name: "Release Notes 2"
location: "url2" |
Closing in favor of PR #59. We can continue the discussion on the PR. |
Is it possible to specify the level of the headings in the Markdown file?
For example, currently my Markdown is being output like so:
But I'd instead like it to be:
Obviously I can make these changes manually after the Markdown file has been generated, but I was hoping to automate it...
The text was updated successfully, but these errors were encountered: