{"version":3,"sources":["webpack:///./assets/src/app/components/glueUpPrepositions.js"],"names":["typographyNodeList","document","getElementsByClassName","i","length","typographyNodeChildren","children","childIndex","newChildInnerHTML","child","tagName","textTagsArray","childInnerHTML","innerHTML","glueUpPrepositions"],"mappings":"wFAAA,OAIA,IAJA,YAEMA,EAAqBC,SAASC,uBAAuB,YAAY,EAE9DC,EAAI,EAAGA,EAAIH,EAAmBI,OAAQD,CAAC,GAI/C,IAHA,IACME,EADiBL,EAAmBG,GACIG,SAGzCC,EAAa,EACjBA,EAAaF,EAAuBD,OACpCG,CAAU,GACT,CACD,IAIOC,EAJDC,EAAQJ,EAAuBE,IAUpBG,IAWlB,IAVA,IAAMC,EAAgB,CACrB,aACA,OACA,OACA,IACA,KACA,KACA,SAGQR,EAAI,EAAGA,EAAIQ,EAAcP,OAAQD,CAAC,GAE1C,GAAIO,IADQC,EAAcR,GAEzB,OAAO,CAKV,GA3BgBM,EAAMC,OAAO,IACpBE,EAAiBH,EAAMI,UACvBL,EAAoBM,YAAmBF,CAAc,EAC3DH,EAAMI,UAAYL,EAEpB,C","file":"glueUpPrepositions.ed2808bb2a1139ccff4c.js","sourcesContent":["import { glueUpPrepositions } from '../common/Utils.js';\n\nconst typographyNodeList = document.getElementsByClassName('typography');\n\nfor (let i = 0; i < typographyNodeList.length; i++) {\n\tconst typographyNode = typographyNodeList[i];\n\tconst typographyNodeChildren = typographyNode.children;\n\n\tfor (\n\t\tlet childIndex = 0;\n\t\tchildIndex < typographyNodeChildren.length;\n\t\tchildIndex++\n\t) {\n\t\tconst child = typographyNodeChildren[childIndex];\n\n\t\tif (isTextTag(child.tagName)) {\n\t\t\tconst childInnerHTML = child.innerHTML;\n\t\t\tconst newChildInnerHTML = glueUpPrepositions(childInnerHTML);\n\t\t\tchild.innerHTML = newChildInnerHTML;\n\t\t}\n\t}\n}\n\nfunction isTextTag(tagName) {\n\tconst textTagsArray = [\n\t\t'blockquote',\n\t\t'cite',\n\t\t'span',\n\t\t'p',\n\t\t'ul',\n\t\t'ol',\n\t\t'table',\n\t];\n\n\tfor (let i = 0; i < textTagsArray.length; i++) {\n\t\tconst tag = textTagsArray[i];\n\t\tif (tagName === tag) {\n\t\t\treturn true;\n\t\t}\n\t}\n\n\treturn false;\n}\n"],"sourceRoot":""}