Searched refs:P (Results 1 – 25 of 65) sorted by relevance
123
12 $this->P->addMode('header',new Header());13 $this->P->parse("abc \n ====== Header ====== \n def");31 $this->P->addMode('header',new Header());32 $this->P->parse("abc \n ===== Header ===== \n def");50 $this->P->addMode('header',new Header());51 $this->P->parse("abc \n ==== Header ==== \n def");69 $this->P->addMode('header',new Header());70 $this->P->parse("abc \n === Header === \n def");88 $this->P->addMode('header',new Header());89 $this->P->parse("abc \n == Header == \n def");[all …]
16 $this->P->addMode('acronym',new Acronym(['FOOBAR']));17 $this->P->parse('abc FOOBAR xyz');31 $this->P->addMode('acronym',new Acronym(['FOOBAR']));32 $this->P->parse('abcFOOBARxyz');44 $this->P->addMode('acronym',new Acronym(['FOO']));45 $this->P->parse('FOOBAR FOO');59 $this->P->addMode('acronym',new Acronym(['FOO','BAR']));60 $this->P->parse('abc FOO def BAR xyz');76 $this->P->addMode('acronym',new Acronym(['FOO','A.FOO','FOO.1','A.FOO.1']));77 $this->P->parse('FOO A.FOO FOO.1 A.FOO.1');[all …]
17 $this->P->addMode('listblock',new Listblock());18 $this->P->parse('50 $this->P->addMode('listblock',new Listblock());51 $this->P->parse('84 $this->P->addMode('listblock',new Listblock());85 $this->P->parse('117 $this->P->addMode('listblock',new Listblock());118 $this->P->parse("\r\n *A\r\n * B\r\n * C\r\n");146 $this->P->addMode('listblock',new Listblock());147 $this->P->parse("\r\n -A\r\n - B\r\n - C\r\n");[all …]
16 $this->P->addMode('table',new Table());17 $this->P->parse('60 $this->P->addMode('table',new Table());61 …$this->P->parse("\r\nabc\r\n| Row 0 Col 1 | Row 0 Col 2 | Row 0 Col 3 |\r\n| Row 1 C…100 $this->P->addMode('table',new Table());101 $this->P->parse('125 $this->P->addMode('table',new Table());126 $this->P->parse('160 $this->P->addMode('table',new Table());161 $this->P->parse('[all …]
16 $this->P->addMode('file',new File());17 $this->P->parse('Foo <file>testing</file> Bar');34 $this->P->addMode('code',new Code());35 $this->P->parse('Foo <code>testing</code> Bar');51 $this->P->addMode('code',new Code());52 $this->P->parse("Foo <code \n>testing</code> Bar");68 $this->P->addMode('code',new Code());69 $this->P->parse("Foo <code php>testing</code> Bar");85 $this->P->addMode('preformatted',new Preformatted());86 $this->P->parse("F oo\n x \n y \nBar\n");[all …]
22 $this->P->addMode('footnote',new Footnote());26 $this->P->parse('Foo (( testing )) Bar');44 $this->P->parse("Foo (( testing\n Bar");56 $this->P->addMode('eol',new Eol());57 $this->P->parse("Foo (( testing\ntesting )) Bar");75 $this->P->parse('Foo (( x((y))z )) Bar');93 $this->P->addMode('eol',new Eol());94 $this->P->parse("Foo \nX(( test\ning ))Y\n Bar");112 $this->P->addMode('strong',new Strong());113 $this->P->parse('Foo (( **testing** )) Bar');[all …]
18 $this->P->addMode('quotes',new Quotes());19 $this->P->parse($raw);36 $this->P->addMode('quotes',new Quotes());37 $this->P->parse($raw);54 $this->P->addMode('quotes',new Quotes());55 $this->P->parse($raw);72 $this->P->addMode('quotes',new Quotes());73 $this->P->parse($raw);90 $this->P->addMode('quotes',new Quotes());91 $this->P->parse($raw);[all …]
22 $this->P->addMode('externallink',new Externallink());23 $this->P->parse("Foo http://www.google.com Bar");52 $this->P->addMode('externallink',new Externallink());53 $this->P->parse("Foo http://123.123.3.21/foo Bar");109 $this->P->addMode('internallink',new Internallink());110 $this->P->addMode('externallink',new Externallink());111 $this->P->parse("Foo $source Bar");130 $this->P->addMode('externallink',new Externallink());131 $this->P->parse("Foo javascript:alert('XSS'); Bar");143 $this->P->addMode('externallink',new Externallink());[all …]
20 $this->P->addMode('strong', new Strong());21 $this->P->parse('Foo **Bar** Baz');38 $this->P->addMode('emphasis', new Emphasis());39 $this->P->parse('Foo //Bar// Baz');56 $this->P->addMode('underline', new Underline());57 $this->P->parse('Foo __Bar__ Baz');74 $this->P->addMode('monospace', new Monospace());75 $this->P->parse("Foo ''Bar'' Baz");92 $this->P->addMode('subscript', new Subscript());93 $this->P->parse('Foo <sub>Bar</sub> Baz');[all …]
12 $this->P->addMode('eol',new Eol());13 $this->P->parse("Foo\nBar");25 $this->P->addMode('eol',new Eol());26 $this->P->parse("Foo\n\nbar\nFoo");41 $this->P->addMode('eol',new Eol());42 $this->P->parse("Foo\r\nBar");54 $this->P->addMode('linebreak',new Linebreak());55 $this->P->parse('Foo\\\\ Bar');69 $this->P->addMode('linebreak',new Linebreak());70 $this->P->addMode('eol',new Eol());[all …]
12 $this->P->addMode('quote',new Quote());13 $this->P->parse("abc\n> def\n>>ghi\nklm");35 $this->P->addMode('quote',new Quote());36 $this->P->parse("abc\r\n> def\r\n>>ghi\r\nklm");58 $this->P->addMode('quote',new Quote());59 $this->P->parse("\n> def\n>>ghi\n ");75 $this->P->addMode('quote',new Quote());76 $this->P->addMode('eol',new Eol());77 $this->P->parse("abc\n> def\n>>ghi\nklm");
31 $this->P->addMode($name, $obj);33 $this->P->parse("I**ñ**t__ë__r//n//â<sup>t</sup>i<sub>ô</sub>n''à''liz<del>æ</del>tiøn");73 $this->P->addMode('header',new Header());74 $this->P->parse("Foo\n ==== Iñtërnâtiônàlizætiøn ==== \n Bar");92 $this->P->addMode('table',new Table());93 $this->P->parse('137 $this->P->addMode('acronym',new Acronym($t));138 $this->P->parse("Foo Iñtërnâtiônàlizætiøn Bar");152 $this->P->addMode('internallink',new InternalLink());153 $this->P->parse("Foo [[wp>Iñtërnâtiônàlizætiøn|Iñtërnâtiônàlizætiøn]] Bar");[all …]
17 $this->P->addMode('code',new Code());21 $this->P->parse('Foo <code>Test</code> Bar');37 $this->P->parse('Foo <code bash>Test</code> Bar');53 $this->P->parse('Foo <code bash script.sh>Test</code> Bar');69 $this->P->parse('Foo <code2>Bar</code2><code>Test</code>');82 $this->P->parse('Foo <code C [enable_line_numbers]>Test</code> Bar');100 … $this->P->parse('Foo <code C [enable_line_numbers highlight_lines_extra="3"]>Test</code> Bar');119 $this->P->parse('Foo <code C [unknown="I will be deleted/ignored!"]>Test</code> Bar');135 $this->P->parse('Foo <code C [enable_line_numbers]>Test</code> Bar');153 $this->P->parse('Foo <code C [enable_line_numbers="1"]>Test</code> Bar');[all …]
11 $this->P->addMode('unformatted',new Unformatted());12 $this->P->parse("Foo <nowiki>testing</nowiki> Bar");28 $this->P->addMode('unformatted',new Unformatted());29 $this->P->parse("Foo %%testing%% Bar");
11 $this->P->addMode('nocache', new Nocache());12 $this->P->parse('Foo ~~NOCACHE~~ Bar');27 $this->P->addMode('nocache', new Nocache());28 $this->P->parse('Foo ~~nocache~~ Bar');
11 $this->P->addMode('notoc', new Notoc());12 $this->P->parse('Foo ~~NOTOC~~ Bar');27 $this->P->addMode('notoc', new Notoc());28 $this->P->parse('Foo ~~notoc~~ Bar');
12 $this->P->addMode('file',new File());16 $this->P->parse('Foo <file>Test</file> Bar');32 $this->P->parse('Foo <file txt test.txt>Test</file> Bar');48 $this->P->parse('Foo <file2>Test</file2> Bar');
17 protected Parser $P; variable in dokuwiki\\test\\Parsing\\ParserMode\\ParserTestBase26 $this->P = new Parser($this->H);32 unset($this->P, $this->H);
1 Përshëndetje!11 Përdoruesi : @USER@12 Përmbledhja redaktimit: @SUMMARY@16 Për të fshirë lajmërimet e faqes, hyni në wiki tek
9 Përmbledhja redaktimit: @SUMMARY@10 Përdoruesi: @USER@
1 ===== Shto Përdorues =====
1 ===== Lista Përdoruesve =====
1 ===== Redakto Përdorues =====
1 ===== Menaxhuesi i Përdoruesit =====
1 ===== Přidat uživatele =====