Skip to content

Commit 0c3494d

Browse files
author
Steven Silvester
authored
Merge pull request #177 from blink1073/escape-tag-names
Escape the npm version string in PR text
2 parents e8c7288 + 17a944c commit 0c3494d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_releaser/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def draft_changelog(
116116
body = title
117117

118118
if npm_versions:
119-
body += npm_versions
119+
body += f"```\n{npm_versions}\n```"
120120

121121
body += '\n\nAfter merging this PR run the "Full Release" Workflow on your fork of `jupyter_releaser` with the following inputs'
122122
body += f"""

0 commit comments

Comments
 (0)