Hi there!
I am pushing packages into Octopus (Cloud) from Azure and I am including metadata about commits. Unfortunately, if our commit messages have new lines in them, everything after the first new line seems to get dropped off in the release notes.
Here is the commit as it’s been pushed in to the package (so looks good):
But here is the release notes:
The release notes are generated using this template:
#{each package in Octopus.Release.Package}
#{each commit in package.Commits}
- #{commit.Comment}
#{/each}
#{/each}
Do I need to somehow escape the commit.Comment?
Thanks!