We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5046550 commit 6382698Copy full SHA for 6382698
docs/scripts/generate-changelog.ts
@@ -274,6 +274,11 @@ function generateChangelogMarkdown(
274
for (const entry of sortedEntries) {
275
markdown += `## ${entry.date}\n\n`;
276
277
+ // 수동 작성 내용이 있으면 렌더링
278
+ if (entry.manualContent) {
279
+ markdown += `<!-- MANUAL_CONTENT_START -->\n${entry.manualContent}\n<!-- MANUAL_CONTENT_END -->\n\n`;
280
+ }
281
+
282
// changeset별 변경사항 (각 changeset의 개별 commit 링크와 함께)
283
for (const changeset of entry.changesets) {
284
const lines = changeset.content.split("\n");
0 commit comments