parse(' | Item | Price | |---|---| | Something | $ 472,78 | | Another entry | € 111 | | | | | Total | A lot |'); self::assertStringStartsWith('', $html); } public function testHeaderIsNotConverted(): void { $sut = new ParsedownExtension(); $html = $sut->parse(' # Foo '); self::assertEquals('

# Foo

', $html); } }