0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00

Fix typo.

This commit is contained in:
G.Ambatte
2021-08-17 20:37:07 +12:00
parent bdfcde7661
commit 2be0d82a35

View File

@@ -508,7 +508,7 @@ const sanatizeScriptTags = (content)=>{
const tagTypes = ['div', 'span', 'a'];
const tagRegex = new RegExp(`(${
_.map(tagTypes, (type)=>{
return `\\<${type}\b|\\</${type}>`;
return `\\<${type}\\b|\\</${type}>`;
}).join('|')})`, 'g');
const processStyleTags = (string)=>{