Skip to content

Commit

Permalink
exclude release history link
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Jan 4, 2020
1 parent 7abd735 commit 5ac33ee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions update_change_history.js
Expand Up @@ -23,6 +23,9 @@ function parse(data) {
if (line.startsWith('Module | Version')) { if (line.startsWith('Module | Version')) {
include = false; include = false;
} }
if (line.startsWith('[Release History]')) {
include = false;
}
if (include && line !== '') { if (include && line !== '') {
console.log(line.replace(/^\s*\* [0-9a-f]{7} /, '* ')); console.log(line.replace(/^\s*\* [0-9a-f]{7} /, '* '));
} }
Expand Down

0 comments on commit 5ac33ee

Please sign in to comment.