Home | History | Annotate | Download | only in PHP-Markdown-Extra-1.2.3

Lines Matching refs:Parser

54 # Initialize the parser and return the result of its transform method.
56 # Setup static parser variable.
57 static $parser;
58 if (!isset($parser)) {
60 $parser = new $parser_class;
63 # Transform text using parser.
64 return $parser->transform($text);
106 static $parser;
107 if (!$parser) {
109 $parser = new $parser_class;
112 $parser->fn_id_prefix = "";
114 $parser->fn_id_prefix = get_the_ID() . ".";
116 return $parser->transform($text);
212 # Markdown Parser Class
277 # Called before the transformation process starts to setup parser
1652 # Markdown Extra Parser Class
1674 # Constructor function. Initialize the parser object.
1745 ### HTML Block Parser ###
1963 # Need to parse tag and following text using the HTML parser.
1977 # Need to parse tag and following text using the HTML parser.
2158 # Parse the content using the HTML-in-Markdown parser.