Handbuch:Preprocessor DOM.php
Diese Funktion wurde in der Version 1.35 vollständig entfernt. |
MediaWiki-Datei: Preprocessor_DOM.php | |
---|---|
Speicherort: | includes/parser/ |
Quellcode: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Klassen: | Preprocessor_DOM |
Beschreibung
This file contains functions for recursively expanding variables, parser functions, templates, and template parameters. As an intermediate step it creates an XML DOM representation of the wikitext (see also Help:ExpandTemplates#XML parse tree).
Functions called from Parser.php
include:
function preprocessToObj
- preprocesses wikitext and returns a document tree, also called DOM tree. It calls:function preprocessToXml
- parses the wikitext with respect to double braces {{...}}, triple braces {{{...}}}, and double rectangular brackets [[...]], and also finds the pipes | and the equals signs =. The result is the DOM tree.
function expand
- produces the expanded wikitext from the DOM tree. It performs double-brace expansion, callingfunction braceSubstitution
inParser.php
, and triple-brace expansion, callingfunction argSubstitution
inParser.php
.