Lines Matching refs:doc

20         $this->doc = '';
40 $this->doc = preg_replace("/(\r?\n){3,}/", "\n\n", $this->doc);
41 $this->doc = preg_replace("/^\s+/", "", $this->doc); // remove leading space and empty lines
52 $this->doc .= str_repeat("#", $level) . ' ' . $text . DOKU_LF;
61 $this->doc .= DOKU_LF;
68 $this->doc .= DOKU_LF;
77 $this->doc .= $text;
84 $this->doc .= DOKU_LF;
91 $this->doc .= DOKU_LF;
98 $this->doc .= DOKU_LF . DOKU_LF;
105 $this->doc .= '----';
112 $this->doc .= '**';
119 $this->doc .= '**';
126 $this->doc .= '*';
133 $this->doc .= '*';
140 $this->doc .= '__';
147 $this->doc .= '__';
154 $this->doc .= "`";
161 $this->doc .= "`";
168 $this->doc .= '<sub>';
175 $this->doc .= '</sub>';
182 $this->doc .= '<sup>';
189 $this->doc .= '</sup>';
196 $this->doc .= '~~';
203 $this->doc .= '~~';
210 $this->doc .= '((';
217 $this->doc .= '))';
235 $this->doc .= DOKU_LF;
252 $this->doc .= DOKU_LF;
263 $this->doc .= DOKU_LF;
264 $this->doc .= str_repeat(' ', $level*2) . $this->listMode[count($this->listMode)-1];
350 $this->doc .= DOKU_LF . "\t" . implode( "\n\t", explode("\n", $text) );
383 … $this->doc .= DOKU_LF . '```' . $language . DOKU_LF . trim($text) . DOKU_LF . '```' . DOKU_LF;
394 $this->doc .= $acronym;
405 $this->doc .= $smiley;
437 $this->doc .= "'";
444 $this->doc .= "'";
457 $this->doc .= '"';
464 $this->doc .= '"';
492 $this->doc .= DOKU_LF;
502 $this->doc .= DOKU_LF; // . '|';
509 $this->doc .= '|' . str_repeat('---|', $this->tableColumns) . DOKU_LF;
534 $this->doc .= '|' . DOKU_LF;
545 $this->doc .= str_repeat( '|', $colspan );
563 $this->doc .= str_repeat( '|', $colspan );
589 $doc = '['.$name.'](#'.$hash.')';
592 return $doc;
594 $this->doc .= $doc;