From 83635eecf0a5797bc27af076784384bb6f3fd99f Mon Sep 17 00:00:00 2001 From: Mark Domansky <4317290+markdomansky@users.noreply.github.com> Date: Sat, 2 Jul 2022 10:03:02 -0500 Subject: [PATCH] Fixed #79, loop in output tag parser --- WebJEA/PSWebHelper.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebJEA/PSWebHelper.vb b/WebJEA/PSWebHelper.vb index 5c73dd3..8ae24b2 100644 --- a/WebJEA/PSWebHelper.vb +++ b/WebJEA/PSWebHelper.vb @@ -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