Lines Matching refs:P
17 $this->P->addMode('file',new File());
18 $this->P->parse('Foo <file>testing</file> Bar');
35 $this->P->addMode('code',new Code());
36 $this->P->parse('Foo <code>testing</code> Bar');
52 $this->P->addMode('code',new Code());
53 $this->P->parse("Foo <code \n>testing</code> Bar");
69 $this->P->addMode('code',new Code());
70 $this->P->parse("Foo <code php>testing</code> Bar");
86 $this->P->addMode('preformatted',new Preformatted());
87 $this->P->parse("F oo\n x \n y \nBar\n");
103 $this->P->addMode('preformatted',new Preformatted());
104 $this->P->parse("F oo\r\n x \r\n y \r\nBar\r\n");
120 $this->P->addMode('preformatted',new Preformatted());
121 $this->P->parse("F oo\n\tx\t\n\t\ty\t\nBar\n");
137 $this->P->addMode('preformatted',new Preformatted());
138 $this->P->parse("F oo\r\n\tx\t\r\n\t\ty\t\r\nBar\r\n");
154 $this->P->addMode('preformatted',new Preformatted());
155 $this->P->addMode('listblock',new Listblock());
156 $this->P->parse(" - x \n * y \nF oo\n x \n y \n -X\n *Y\nBar\n");
188 $this->P->addMode('preformatted',new Preformatted());
189 $this->P->addMode('header',new Header());
190 $this->P->addMode('eol',new Eol());
191 $this->P->parse("F oo\n ==Test==\n y \nBar\n");