Email Step should parse Markdown Release Notes

I’ve got an email step that sends out the deployment results, and it includes the release notes in it.

We do all of our release notes in markdown (since that’s what the editor supports), and an markdown is designed to be parsed into html.

If we check the checkbox staying that the EMAIL is HTML, then it should automagically parse the #{Octopus.Release.Notes} into HTML before embedding in the message.

Hi Chase,

Thanks for getting in touch! We cant assume that all release notes would have markdown or that the whole block of the email would.
We do have a variable substitution synatax to convert markdown to html that you can wrap around your release notes variable though


ie. #{Octopus.Release.Notes | Markdown}

Hope that helps!
Vanessa

that’s just what we needed. Couldn’t find it myself.