assertEquals('
This will be a paragraph
', parseMarkdown('This will be a paragraph')); } public function testParsingItalics() { $this->assertEquals('This will be italic
', parseMarkdown('_This will be italic_')); } public function testParsingBoldText() { $this->assertEquals('This will be bold
', parseMarkdown('__This will be bold__')); } public function testMixedNormalItalicsAndBoldText() { $this->assertEquals('This will be mixed
', parseMarkdown('This will _be_ __mixed__')); } public function testWithH1Headerlevel() { $this->assertEquals('Item 1
Item 2