-
Notifications
You must be signed in to change notification settings - Fork 7
Description
As a user, I would like to be able to provide multi-line change descriptions and have the changelog output them by default to render as part of the same bullet in the Markdown file.
Currently, inputting a change description with multiple line breaks will result in subsequent lines being dedented, e.g.,
- minor: This is the first line of my change, followed by two line breaks
The following lines are dedented and do not render as part of the
original bullet.
Instead, the default template should render any subsequent lines in the changelog as if they are part of the same bullet, e.g.
minor: This is the first line of my change, followed by two line breaks
The following lines are indented and render as part of the
original bullet.
(This can be achieved by changing {{ change.description }} in the default template to {{ change.description | indent(2) }})