Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
Parser.js
01 var tagName = config.tagName,
02 attrName = config.attrName;
03
04 matches.forEach(function(m)
05 {
06 var entity = m[0][0],
07 chr = html_entity_decode(entity);
08
09 if (chr === entity || chr.charCodeAt(0) < 32)
10 {
11 // If the entity was not decoded, we assume it's not valid and we ignore it.
12 // Same thing if it's a control character
13 return;
14 }
15
16 addSelfClosingTag(tagName, m[0][1], entity.length).setAttribute(attrName, chr);
17 });