When generating changelogs using changesets, documents are created in the following format:
## 1.2.1 (Version)
### Patch Changes
- content1
- content2
### Minor Changes
- content 1
- content 2
I want to change the content within the ### sections. Since I'm developing a design system, I'd like to replace this part with the component names.
## 1.2.1 (Version)
### Button
- content1
- content2
### Checkbox
- content 1
- content 2...
Is there currently a supported way to modify these titles? Or would you recommend using a script to directly modify the documentation, perhaps via a file like postprocess.js?
When generating changelogs using changesets, documents are created in the following format:
I want to change the content within the
###sections. Since I'm developing a design system, I'd like to replace this part with the component names.Is there currently a supported way to modify these titles? Or would you recommend using a script to directly modify the documentation, perhaps via a file like
postprocess.js?