Lines Matching full:the
12 * All DokuWiki plugins to extend the parser/rendering mechanism
25 * Needs to return one of the mode types defined in $PARSER_MODES in Parser.php
34 * Defines the mode types for other dokuwiki markup that maybe nested within the
35 * plugin's own markup. Needs to return an array of one or more of the mode types
49 * for correct XHTML nesting. Should return one of the following:
51 * 'normal' - The plugin can be used inside paragraphs
65 * Handler to prepare matched data for the rendering process
68 * may be not be run during the object's current life.
70 * Usually you should only need the $match param.
72 * @param string $match The text matched by the patterns
73 * @param int $state The lexer state for the match
74 * @param int $pos The character position of the matched text
75 * @param Doku_Handler $handler The Doku_Handler object
81 * Handles the actual output creation.
83 * The function must not assume any other of the classes methods have been run
84 * during the object's current life. The only reliable data it receives are its
87 * The function should always check for the given output format and return false
90 * $renderer contains a reference to the renderer object which is
91 * currently handling the rendering. You need to use it for writing
92 * the output. How this is done depends on the renderer used (specified
95 * The contents of the $data array depends on what the handler() function above
99 * @param Doku_Renderer $renderer the current renderer object
101 …rn boolean rendered correctly? (however, returned value is not used at the moment)