![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/remark-parse/lib/util/ |
'use strict' var attributeName = '[a-zA-Z_:][a-zA-Z0-9:._-]*' var unquoted = '[^"\'=<>`\\u0000-\\u0020]+' var singleQuoted = "'[^']*'" var doubleQuoted = '"[^"]*"' var attributeValue = '(?:' + unquoted + '|' + singleQuoted + '|' + doubleQuoted + ')' var attribute = '(?:\\s+' + attributeName + '(?:\\s*=\\s*' + attributeValue + ')?)' var openTag = '<[A-Za-z][A-Za-z0-9\\-]*' + attribute + '*\\s*\\/?>' var closeTag = '<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>' var comment = '<!---->|<!--(?:-?[^>-])(?:-?[^-])*-->' var processing = '<[?].*?[?]>' var declaration = '<![A-Za-z]+\\s+[^>]*>' var cdata = '<!\\[CDATA\\[[\\s\\S]*?\\]\\]>' exports.openCloseTag = new RegExp('^(?:' + openTag + '|' + closeTag + ')') exports.tag = new RegExp( '^(?:' + openTag + '|' + closeTag + '|' + comment + '|' + processing + '|' + declaration + '|' + cdata + ')' )