We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79dba49 commit 9cfff33Copy full SHA for 9cfff33
index.js
@@ -173,6 +173,7 @@ export function generateReleaseNotes(commits) {
173
function writeSection(category, title) {
174
sb.push(`### ${title}\n\n`);
175
for (let { subject, hash, body } of category) {
176
+ subject = subject.replace(/\*/g, "\\*");
177
sb.push(`* **${subject}** (${hash})\n`);
178
if (body.length) {
179
body = body.split(/\r?\n/g).join("\n ");
0 commit comments