We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532ebe6 commit 764f5d5Copy full SHA for 764f5d5
scripts/release.js
@@ -91,7 +91,7 @@ const steamChangeNoteContent = `v${version}\n\n` + unreleasedChangelogContent
91
.replace(/^### (.*)$/mg, (s, text) => `[h3]${text}[/h3]`)
92
.replace(/^\* /mg, '[*] ')
93
.replace(/\n\n\[\*\]/mg, (s) => '\n[list]\n\[*\]')
94
- .replace(/(\[\*\][^\n]*)(\n\n|$)/mg, (s, line) => `${line}\n[/list]\n`)
+ .replace(/(\[\*\][^\n]*)(\n\n|$)/g, (s, line) => `${line}\n[/list]\n`)
95
.replace(/\[(.*)\]\((.*)\)/g, (s, label, url) => `[url=${url}]${label}[/url]`)
96
.replace(/\*\*\*(.*)\*\*\*/g, (s, text) => `[b][i]${text}[/i][/b]`)
97
.replace(/\*\*(.*)\*\*/g, (s, text) => `[b]${text}[/b]`)
0 commit comments