From c1e2d54ef381842e759b7aa024cdf2a8f35fc7fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Mon, 11 Apr 2022 11:51:50 +0900 Subject: [PATCH] Fixed invalid matches not printed out sincerely --- string.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.js b/string.js index ade4f6e..4e0015f 100644 --- a/string.js +++ b/string.js @@ -71,7 +71,7 @@ module.exports = { if( t === "" || t === "/" ) { // Hits "<#" where # is not a valid tag name - _fd( t + _a ); + _fd( _OP + t + _a ); continue; }