-
Type:
Suggestion
-
Resolution: Fixed
-
None
-
Component/s: Documentation - All
-
None
Problem Definition
The Creating a custom Release Notes template containing release comments documentation provides the old syntax code that causes some of the codes not to work after following the Step 2.
The problematic code:
<title>$action.getText('release.notes.text.title', $project, $version) </title>
<li>[<a xhref='$!appProps.getString("jira.baseurl")/browse/$issue.key'>$issue.key</a>] -
$textUtils.htmlEncode($issue.summary)#getReleaseNoteComment($issue $customFieldManager)</li>
Suggested Solution
Replace the problematic code with the working code below:
<title>$textUtils.htmlEncode($action.getText('release.notes.html.title', $project, $version))</title>
<li>[<a href='$!requestContext.canonicalBaseUrl/browse/$issue.key'>$issue.key</a>] - #doubleEncode($issue.summary)#getReleaseNoteComment($issue $customFieldManager)</li>