Lines Matching +full:- +full:p
20 $this->P->addMode('strong', new Strong());
21 $this->P->parse('Foo **Bar** Baz');
33 $this->assertCalls($calls, $this->H->calls);
38 $this->P->addMode('emphasis', new Emphasis());
39 $this->P->parse('Foo //Bar// Baz');
51 $this->assertCalls($calls, $this->H->calls);
56 $this->P->addMode('underline', new Underline());
57 $this->P->parse('Foo __Bar__ Baz');
69 $this->assertCalls($calls, $this->H->calls);
74 $this->P->addMode('monospace', new Monospace());
75 $this->P->parse("Foo ''Bar'' Baz");
87 $this->assertCalls($calls, $this->H->calls);
92 $this->P->addMode('subscript', new Subscript());
93 $this->P->parse('Foo <sub>Bar</sub> Baz');
105 $this->assertCalls($calls, $this->H->calls);
110 $this->P->addMode('superscript', new Superscript());
111 $this->P->parse('Foo <sup>Bar</sup> Baz');
123 $this->assertCalls($calls, $this->H->calls);
128 $this->P->addMode('deleted', new Deleted());
129 $this->P->parse('Foo <del>Bar</del> Baz');
141 $this->assertCalls($calls, $this->H->calls);
146 $this->P->addMode('strong', new Strong());
147 $this->P->addMode('emphasis', new Emphasis());
148 $this->P->parse('Foo **bold //and italic// text** Bar');
164 $this->assertCalls($calls, $this->H->calls);
169 $this->P->addMode('strong', new Strong());
170 $this->P->parse('Foo **bold **not nested** end** Bar');
186 $this->assertCalls($calls, $this->H->calls);