Lines Matching +full:n +full:- +full:one
31 return str_replace(["\r", "\n"], $eol, $s);
38 return $this->normalizeLineEndings($xhtml);
42 * C-style comment syntax
46 $text = "\nWiki /* comment out */ text\n";
48 $this->assertEquals($expectHtml, $this->getHtml($text));
60 $this->assertEquals($expectHtml, $this->getHtml($text));
73 $this->assertEquals($expectHtml, $this->getHtml($text));
77 * One line comment
81 $text = "\nWiki text // allow slash (/) in one line comment\n";
83 $this->assertEquals($expectHtml, $this->getHtml($text));
85 $text = "\nWiki //text// // allow slash (/) in one line comment\n";
87 $this->assertEquals($expectHtml, $this->getHtml($text));
90 // vim:set fileencoding=utf-8 :