[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 var regexps = config.regexps, 2 tagName = config.tagName, 3 attrName = config.attrName; 4 5 var onlyFirst = typeof config.onlyFirst !== 'undefined', 6 keywords = {}; 7 8 regexps.forEach(function(regexp) 9 { 10 var m; 11 12 regexp.lastIndex = 0; 13 while (m = regexp.exec(text)) 14 { 15 var value = m[0], 16 pos = m.index; 17 18 if (onlyFirst) 19 { 20 if (value in keywords) 21 { 22 continue; 23 } 24 25 keywords[value] = 1; 26 } 27 28 addSelfClosingTag(tagName, pos, value.length).setAttribute(attrName, value); 29 } 30 });
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |