diff --git a/ui/noogle/src/components/helper/string.ts b/ui/noogle/src/components/helper/string.ts
index 717663a..8b14418 100644
--- a/ui/noogle/src/components/helper/string.ts
+++ b/ui/noogle/src/components/helper/string.ts
@@ -10,7 +10,7 @@ const Regex_Nip05_Str= "(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^
const StringUtil = {
isValidUrl: (str: string): boolean => new RegExp(Regex_Url_Str, "i").test(str),
parseHyperlinks: (str: string): string => str.replace(new RegExp(Regex_Urlw_Str, "gim"), "$&").replace(new RegExp(Regex_Nip05_Str, "gim"), "$& "),
- parseImages: (str: string): string => str.replace(new RegExp(Regex_Url_Img, "gim"), "
").replace(new RegExp(Regex_Url_Video, "gim"), " ").replace(new RegExp(Regex_Url_Str, "gim"), "$& "),
+ parseImages: (str: string): string => str.toLowerCase().includes('nsfw') ? str.replace(new RegExp(Regex_Url_Img, "gim"), "NSFW Show/Hide Results

").replace(new RegExp(Regex_Url_Video, "gim"), "NSFW Show/Hide Results
").replace(new RegExp(Regex_Url_Str, "gim"), "$& ") : str.replace(new RegExp(Regex_Url_Img, "gim"), "
").replace(new RegExp(Regex_Url_Video, "gim"), " ").replace(new RegExp(Regex_Url_Str, "gim"), "$& "),
//parseImages: (str: string): string => str.replace("\n", " ").replace(new RegExp(Regex_Url_Img, "gim"), "
")