Skip to content

Commit

Permalink
Fixed #79, loop in output tag parser
Browse files Browse the repository at this point in the history
  • Loading branch information
markdomansky committed Jul 2, 2022
1 parent 3d6cf33 commit 83635ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebJEA/PSWebHelper.vb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
input = rgxA.Replace(input, repA, 1, idx)
input = rgxSpan.Replace(input, repSpan, 1, idx)
input = rgxImg.Replace(input, repImg, 1, idx)
idx = input.LastIndexOf("[[")
idx = input.LastIndexOf("[[", idx - 1)
End While

Return input
Expand Down

0 comments on commit 83635ee

Please sign in to comment.