typeof _translations !== "undefined" || (_translations = {}) _translations["declared"] = _translations["declared"] || (_translations["declared"] = {}) _translations["declared_files"] = _translations["declared_files"] || (_translations["declared_files"] = {}) unique_translation_check: { if (_translations["declared_files"]["f7ffefe1f23e9f41f63ecb2759b0052d274d4984d577731464ae6be88cf1b89f"] !== undefined) { console.warn("This file has already been loaded!\nAre you executing scripts twice?") break unique_translation_check; } else _translations["declared_files"]["f7ffefe1f23e9f41f63ecb2759b0052d274d4984d577731464ae6be88cf1b89f"] = "f7ffefe1f23e9f41f63ecb2759b0052d274d4984d577731464ae6be88cf1b89f" /*Auto generated helper for testing if the translation keys are unique*/ for (var { name: _i, path: _a } of []) { if (_translations["declared"][_i] !== undefined) throw "Translation with generated name \"" + _i + "\" already exists!\nIt has been already defined here: " + _translations["declared"][_i] + "\nAttempted to redefine here: " + _a + "\nRegenerate and/or fix your program!"; else _translations["declared"][_i] = _a } } /* Copyright (C) 2011 Patrick Gillespie, http://patorjk.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* Extendible BBCode Parser v1.0.0 By Patrick Gillespie (patorjk@gmail.com) Website: http://patorjk.com/ This module allows you to parse BBCode and to extend to the mark-up language to add in your own tags. */ var XBBCODE; (function (XBBCODE) { // ----------------------------------------------------------------------------- // Set up private variables // ----------------------------------------------------------------------------- const urlPattern = /^(?:https?|file|c):(?:\/{1,3}|\\{1})[-a-zA-Z0-9:;,@#%&()~_?\+=\/\\\.]*$/, colorNamePattern = /^(?:aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen)$/, colorCodePattern = /^#?[a-fA-F0-9]{6}$/, emailPattern = /[^\s@]+@[^\s@]+\.[^\s@]+/, fontFacePattern = /^([a-z][a-z0-9_]+|"[a-z][a-z0-9_\s]+")$/i; let tagList, tagsNoParseList = [], bbRegExp, pbbRegExp, pbbRegExp2, openTags, closeTags; /* ----------------------------------------------------------------------------- * _tags * This object contains a list of _tags that your code will be able to understand. * Each tag object has the following properties: * * openTag - A function that takes in the tag's parameters (if any) and its * contents, and returns what its HTML open tag should be. * Example: [color=red]test[/color] would take in "=red" as a * parameter input, and "test" as a content input. * It should be noted that any BBCode inside of "content" will have * been processed by the time it enter the openTag function. * * closeTag - A function that takes in the tag's parameters (if any) and its * contents, and returns what its HTML close tag should be. * * displayContent - Defaults to true. If false, the content for the tag will * not be displayed. This is useful for _tags like IMG where * its contents are actually a parameter input. * * restrictChildrenTo - A list of BBCode _tags which are allowed to be nested * within this BBCode tag. If this property is omitted, * any BBCode tag may be nested within the tag. * * restrictParentsTo - A list of BBCode _tags which are allowed to be parents of * this BBCode tag. If this property is omitted, any BBCode * tag may be a parent of the tag. * * noParse - true or false. If true, none of the content WITHIN this tag will be * parsed by the XBBCode parser. * * * * LIMITIONS on adding NEW TAGS: * - Tag names should be alphanumeric (including underscores) and all _tags should have an opening tag * and a closing tag. * The [*] tag is an exception because it was already a standard * bbcode tag. Technecially _tags don't *have* to be alphanumeric, but since * regular expressions are used to parse the text, if you use a non-alphanumeric * tag names, just make sure the tag name gets escaped properly (if needed). * --------------------------------------------------------------------------- */ let _tags = { "b": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, /* This tag does nothing and is here mostly to be used as a classification for the bbcode input when evaluating parent-child tag relationships */ "bbcode": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "center": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "code": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, noParse: true }, "color": { openTag: function (params, content) { params = params || ''; var colorCode = (params.substr(1)).toLowerCase() || "black"; colorNamePattern.lastIndex = 0; colorCodePattern.lastIndex = 0; if (!colorNamePattern.test(colorCode)) { if (!colorCodePattern.test(colorCode)) { colorCode = "black"; } else { if (colorCode.substr(0, 1) !== "#") { colorCode = "#" + colorCode; } } } return ''; }, closeTag: function (params, content) { return ''; } }, "email": { openTag: function (params, content) { var myEmail; if (!params) { myEmail = content.replace(/<.*?>/g, ""); } else { myEmail = params.substr(1); } emailPattern.lastIndex = 0; if (!emailPattern.test(myEmail)) { return ''; } return ''; }, closeTag: function (params, content) { return ''; } }, "face": { openTag: function (params, content) { params = params || ''; var faceCode = params.substr(1) || "inherit"; fontFacePattern.lastIndex = 0; if (!fontFacePattern.test(faceCode)) { faceCode = "inherit"; } return ''; }, closeTag: function (params, content) { return ''; } }, "font": { openTag: function (params, content) { params = params || ''; var faceCode = params.substr(1) || "inherit"; fontFacePattern.lastIndex = 0; if (!fontFacePattern.test(faceCode)) { faceCode = "inherit"; } return ''; }, closeTag: function (params, content) { return ''; } }, "i": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "img": { openTag: function (params, content) { var myUrl = content; urlPattern.lastIndex = 0; if (!urlPattern.test(myUrl)) { myUrl = ""; } return ''; }, closeTag: function (params, content) { return ''; }, displayContent: false }, "justify": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "large": { openTag: function (params, content) { params = params || ''; var colorCode = params.substr(1) || "inherit"; colorNamePattern.lastIndex = 0; colorCodePattern.lastIndex = 0; if (!colorNamePattern.test(colorCode)) { if (!colorCodePattern.test(colorCode)) { colorCode = "inherit"; } else { if (colorCode.substr(0, 1) !== "#") { colorCode = "#" + colorCode; } } } return ''; }, closeTag: function (params, content) { return ''; } }, "left": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "li": { openTag: function (params, content) { return "
  • "; }, closeTag: function (params, content) { return "
  • "; }, restrictParentsTo: ["list", "ul", "ol"] }, "list": { openTag: function (params, content) { return ''; }, restrictChildrenTo: ["*", "li"] }, "noparse": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, noParse: true }, "ol": { openTag: function (params, content) { return '
      '; }, closeTag: function (params, content) { return '
    '; }, restrictChildrenTo: ["*", "li"] }, "php": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, noParse: true }, "quote": { openTag: function (params, content) { return '
    '; }, closeTag: function (params, content) { return '
    '; } }, "right": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "s": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "size": { openTag: function (params, content) { params = params || ''; var mySize = parseInt(params.substr(1), 10) || 0; if (mySize < 4 || mySize > 40) { mySize = 14; } return ''; }, closeTag: function (params, content) { return ''; } }, "small": { openTag: function (params, content) { params = params || ''; var colorCode = params.substr(1) || "inherit"; colorNamePattern.lastIndex = 0; colorCodePattern.lastIndex = 0; if (!colorNamePattern.test(colorCode)) { if (!colorCodePattern.test(colorCode)) { colorCode = "inherit"; } else { if (colorCode.substr(0, 1) !== "#") { colorCode = "#" + colorCode; } } } return ''; }, closeTag: function (params, content) { return ''; } }, "sub": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "sup": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "table": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return '
    '; }, restrictChildrenTo: ["tbody", "thead", "tfoot", "tr"] }, "tbody": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictChildrenTo: ["tr"], restrictParentsTo: ["table"] }, "tfoot": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictChildrenTo: ["tr"], restrictParentsTo: ["table"] }, "thead": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictChildrenTo: ["tr"], restrictParentsTo: ["table"] }, "td": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictParentsTo: ["tr"] }, "th": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictParentsTo: ["tr"] }, "tr": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; }, restrictChildrenTo: ["td", "th"], restrictParentsTo: ["table", "tbody", "tfoot", "thead"] }, "u": { openTag: function (params, content) { return ''; }, closeTag: function (params, content) { return ''; } }, "ul": { openTag: function (params, content) { return ''; }, restrictChildrenTo: ["*", "li"] }, "url": { openTag: function (params, content) { let myUrl; if (!params) { myUrl = content.replace(/<.*?>/g, ""); } else { myUrl = params.substr(1); } urlPattern.lastIndex = 0; if (!urlPattern.test(myUrl)) { myUrl = "#"; } return ''; }, closeTag: function (params, content) { return ''; } }, "hr": { openTag: (params, content) => { return "
    "; }, closeTag: (params, content) => { return ""; } }, /* The [*] tag is special since the user does not define a closing [/*] tag when writing their bbcode. Instead this module parses the code and adds the closing [/*] tag in for them. None of the _tags you add will act like this and this tag is an exception to the others. */ "*": { openTag: function (params, content) { return "
  • "; }, closeTag: function (params, content) { return "
  • "; }, restrictParentsTo: ["list", "ul", "ol"] } }; // create tag list and lookup fields function initTags() { tagList = []; let prop, ii, len; for (prop in _tags) { if (_tags.hasOwnProperty(prop)) { if (prop === "*") { tagList.push("\\" + prop); } else { tagList.push(prop); if (_tags[prop].noParse) { tagsNoParseList.push(prop); } } _tags[prop].validChildLookup = {}; _tags[prop].validParentLookup = {}; _tags[prop].restrictParentsTo = _tags[prop].restrictParentsTo || []; _tags[prop].restrictChildrenTo = _tags[prop].restrictChildrenTo || []; len = _tags[prop].restrictChildrenTo.length; for (ii = 0; ii < len; ii++) { _tags[prop].validChildLookup[_tags[prop].restrictChildrenTo[ii]] = true; } len = _tags[prop].restrictParentsTo.length; for (ii = 0; ii < len; ii++) { _tags[prop].validParentLookup[_tags[prop].restrictParentsTo[ii]] = true; } } } bbRegExp = new RegExp("]*?)?>((?:.|[\\r\\n])*?)", "gi"); pbbRegExp = new RegExp("\\[(" + tagList.join("|") + ")([ =][^\\]]*?)?\\]([^\\[]*?)\\[/\\1\\]", "gi"); pbbRegExp2 = new RegExp("\\[(" + tagsNoParseList.join("|") + ")([ =][^\\]]*?)?\\]([\\s\\S]*?)\\[/\\1\\]", "gi"); // create the regex for escaping ['s that aren't apart of _tags (function () { var closeTagList = []; for (var ii = 0; ii < tagList.length; ii++) { if (tagList[ii] !== "\\*") { // the * tag doesn't have an offical closing tag closeTagList.push("/" + tagList[ii]); } } openTags = new RegExp("(\\[)((?:" + tagList.join("|") + ")(?:[ =][^\\]]*?)?)(\\])", "gi"); closeTags = new RegExp("(\\[)(" + closeTagList.join("|") + ")(\\])", "gi"); })(); } initTags(); // ----------------------------------------------------------------------------- // private functions // ----------------------------------------------------------------------------- function checkParentChildRestrictions(parentTag, bbcode, bbcodeLevel, tagName, tagParams, tagContents, errQueue) { errQueue = errQueue || []; bbcodeLevel++; // get a list of all of the child _tags to this tag var reTagNames = new RegExp("(])", "gi"), reTagNamesParts = new RegExp("(])", "i"), matchingTags = tagContents.match(reTagNames) || [], cInfo, errStr, ii, childTag, pInfo = _tags[parentTag] || {}; reTagNames.lastIndex = 0; if (!matchingTags) { tagContents = ""; } for (ii = 0; ii < matchingTags.length; ii++) { reTagNamesParts.lastIndex = 0; childTag = (matchingTags[ii].match(reTagNamesParts))[2].toLowerCase(); if (pInfo && pInfo.restrictChildrenTo && pInfo.restrictChildrenTo.length > 0) { if (!pInfo.validChildLookup[childTag]) { errStr = "The tag \"" + childTag + "\" is not allowed as a child of the tag \"" + parentTag + "\"."; errQueue.push(errStr); } } cInfo = _tags[childTag] || {}; if (cInfo.restrictParentsTo.length > 0) { if (!cInfo.validParentLookup[parentTag]) { errStr = "The tag \"" + parentTag + "\" is not allowed as a parent of the tag \"" + childTag + "\"."; errQueue.push(errStr); } } } tagContents = tagContents.replace(bbRegExp, function (matchStr, bbcodeLevel, tagName, tagParams, tagContents) { errQueue = checkParentChildRestrictions(tagName.toLowerCase(), matchStr, bbcodeLevel, tagName, tagParams, tagContents, errQueue); return matchStr; }); return errQueue; } /* This function updates or adds a piece of metadata to each tag called "bbcl" which indicates how deeply nested a particular tag was in the bbcode. This property is removed from the HTML code _tags at the end of the processing. */ function updateTagDepths(tagContents) { tagContents = tagContents.replace(/\<([^\>][^\>]*?)\>/gi, function (matchStr, subMatchStr) { var bbCodeLevel = subMatchStr.match(/^bbcl=([0-9]+) /); if (bbCodeLevel === null) { return ""; } else { return "<" + subMatchStr.replace(/^(bbcl=)([0-9]+)/, function (matchStr, m1, m2) { return m1 + (parseInt(m2, 10) + 1); }) + ">"; } }); return tagContents; } /* This function removes the metadata added by the updateTagDepths function */ function unprocess(tagContent) { return tagContent.replace(//gi, "").replace(//gi, "]"); } var replaceFunct = function (matchStr, bbcodeLevel, tagName, tagParams, tagContents) { tagName = tagName.toLowerCase(); var processedContent = _tags[tagName].noParse ? unprocess(tagContents) : tagContents.replace(bbRegExp, replaceFunct), openTag = _tags[tagName].openTag(tagParams, processedContent), closeTag = _tags[tagName].closeTag(tagParams, processedContent); if (_tags[tagName].displayContent === false) { processedContent = ""; } return openTag + processedContent + closeTag; }; function parse(config) { var output = config.text; output = output.replace(bbRegExp, replaceFunct); return output; } /* The star tag [*] is special in that it does not use a closing tag. Since this parser requires that _tags to have a closing tag, we must pre-process the input and add in closing _tags [/*] for the star tag. We have a little levaridge in that we know the text we're processing wont contain the <> characters (they have been changed into their HTML entity form to prevent XSS and code injection), so we can use those characters as markers to help us define boundaries and figure out where to place the [/*] _tags. */ function fixStarTag(text) { text = text.replace(/\[(?!\*[ =\]]|list([ =][^\]]*)?\]|\/list[\]])/ig, "<"); text = text.replace(/\[(?=list([ =][^\]]*)?\]|\/list[\]])/ig, ">"); while (text !== (text = text.replace(/>list([ =][^\]]*)?\]([^>]*?)(>\/list])/gi, function (matchStr, contents, endTag) { var innerListTxt = matchStr; while (innerListTxt !== (innerListTxt = innerListTxt.replace(/\[\*\]([^\[]*?)(\[\*\]|>\/list])/i, function (matchStr, contents, endTag) { if (endTag.toLowerCase() === ">/list]") { endTag = "/g, "<"); return innerListTxt; }))) ; // add ['s for our _tags back in text = text.replace(/"); return updateTagDepths(matchStr); }))) ; return text; } // ----------------------------------------------------------------------------- // public functions // ----------------------------------------------------------------------------- // API, Expose all available _tags function tags() { return _tags; } XBBCODE.tags = tags; ; function addTags(...tags) { for (const tag of tags) _tags[tag.tag] = tag.function; initTags(); } XBBCODE.addTags = addTags; ; class ProcessResult { } XBBCODE.ProcessResult = ProcessResult; function process(config) { let result = new ProcessResult(); result.errorQueue = []; config.text = config.text.replace(//g, ">"); // escape HTML tag brackets config.text = config.text.replace(openTags, function (matchStr, openB, contents, closeB) { return "<" + contents + ">"; }); config.text = config.text.replace(closeTags, function (matchStr, openB, contents, closeB) { return "<" + contents + ">"; }); config.text = config.text.replace(/\[/g, "["); // escape ['s that aren't apart of _tags config.text = config.text.replace(/\]/g, "]"); // escape ['s that aren't apart of _tags config.text = config.text.replace(//g, "]"); // escape ['s that aren't apart of _tags // process _tags that don't have their content parsed while (config.text !== (config.text = config.text.replace(pbbRegExp2, function (matchStr, tagName, tagParams, tagContents) { tagContents = tagContents.replace(/\[/g, "["); tagContents = tagContents.replace(/\]/g, "]"); tagParams = tagParams || ""; tagContents = tagContents || ""; return "[" + tagName + tagParams + "]" + tagContents + "[/" + tagName + "]"; }))) ; config.text = fixStarTag(config.text); // add in closing _tags for the [*] tag config.text = config.text.replace(/\[hr](?!.*\[\/hr])/gmi, "[hr][/hr]"); /* fix hr tag */ config.text = addBbcodeLevels(config.text); // add in level metadata result.errorQueue = checkParentChildRestrictions("bbcode", config.text, -1, "", "", config.text); result.html = parse(config); if (result.html.indexOf("[") !== -1 || result.html.indexOf("]") !== -1) { result.errorQueue.push("Some _tags appear to be misaligned."); } if (config.removeMisalignedTags) { result.html = result.html.replace(/\[.*?\]/g, ""); } if (config.addInLineBreaks) { result.html = '
    ' + result.html + '
    '; } if (!config.escapeHtml) { result.html = result.html.replace("[", "["); // put ['s back in result.html = result.html.replace("]", "]"); // put ['s back in } if (result.errorQueue.length == 0) { result.error = false; result.errorQueue = undefined; } else { result.error = true; } return result; } XBBCODE.process = process; ; })(XBBCODE || (XBBCODE = {})); // for node if (typeof module !== "undefined") { module.exports = XBBCODE; } //# sourceMappingURL=xbbcode.js.map