Skip to content

Commit

Permalink
JiraLinkInlineParser.cs - Make digits in JiraKey's posible
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysteryduck001 authored May 3, 2021
1 parent 0a00404 commit f56b8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Markdig/Extensions/JiraLinks/JiraLinkInlineParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override bool Match(InlineProcessor processor, ref StringSlice slice)
var endKey = slice.Start;

//read as many uppercase characters as required - project key
while (current.IsAlphaUpper())
while (current.IsAlphaUpper() || current.IsDigit())
{
endKey = slice.Start;
current = slice.NextChar();
Expand Down

0 comments on commit f56b8e6

Please sign in to comment.