Skip to content

Commit

Permalink
use h3 for changelog sections
Browse files Browse the repository at this point in the history
  • Loading branch information
pooya parsa committed May 25, 2019
1 parent 2776d2d commit d7910e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function generateMarkDown(commits) {
}

const { title } = types[type]
markdown += '\n\n' + '#### ' + title + '\n\n'
markdown += '\n\n' + '### ' + title + '\n\n'

const scopeGroups = groupBy(group, 'scope')
for (const scopeName in scopeGroups) {
Expand All @@ -143,7 +143,7 @@ function generateMarkDown(commits) {

const authors = sortBy(uniq(commits.map(commit => commit.authorName).filter(an => !isKnownAuthor(an))))
if (authors.length) {
markdown += '\n\n' + '#### ' + '💖 Thanks to' + '\n\n'
markdown += '\n\n' + '### ' + '💖 Thanks to' + '\n\n'
markdown += authors.map(name => '- ' + name).join('\n')
}

Expand Down

0 comments on commit d7910e9

Please sign in to comment.