We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d75d42 commit 3058d29Copy full SHA for 3058d29
llvm/utils/git/github-automation.py
@@ -51,9 +51,9 @@ def escape_description(str):
51
# https://github.com/github/markup/issues/1168#issuecomment-494946168
52
str = html.escape(str, False)
53
# '@' followed by alphanum is a user name
54
- str = re.sub("@(?=\w+)", "@<!-- -->", str)
+ str = re.sub("@(?=\w)", "@<!-- -->", str)
55
# '#' followed by digits is considered an issue number
56
- str = re.sub("#(?=\d+\s)", "#<!-- -->", str)
+ str = re.sub("#(?=\d)", "#<!-- -->", str)
57
return str
58
59
0 commit comments