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 d4b0802 commit 2ae780cCopy full SHA for 2ae780c
Specialized Areas/Regular Expressions/Img Tag Regex validator/script.js
@@ -13,6 +13,6 @@ while (kbArt.next()) {
13
var imgRegex = /<img([\w\W]+?)>/; // Regex for checking img tag.
14
var regex = new RegExp(imgRegex); // forming regex using SN.
15
if (kbArt.getValue('text') && regex.test(kbArt.getValue('text'))) { // if article body is not empty and has image tag.
16
- gs.info("Raghav Image is found in KB Article: " + kbArt.getValue('number'));
+ gs.info("Image is found in KB Article: " + kbArt.getValue('number'));
17
}
18
0 commit comments