[ Index ] |
PHP Cross Reference of phpBB-3.2.11-deutsch |
[Summary view] [Print] [Text view]
1 var tagName = config.tagName, 2 attrName = config.attrName; 3 4 matches.forEach(function(m) 5 { 6 // Decode HTML entities 7 var content = html_entity_decode(m[0][0].substr(4, m[0][0].length - 7)); 8 9 // Remove angle brackets from the content 10 content = content.replace(/[<>]/g, ''); 11 12 // Remove trailing dashes 13 content = content.replace(/-+$/, ''); 14 15 // Remove the illegal sequence "--" from the content 16 content = content.replace(/--/g, ''); 17 18 addSelfClosingTag(tagName, m[0][1], m[0][0].length).setAttribute(attrName, content); 19 });
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 11 20:33:01 2020 | Cross-referenced by PHPXref 0.7.1 |