We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1825db8 commit 04fd590Copy full SHA for 04fd590
packages/framework/tests/Feature/MarkdownServiceTest.php
@@ -35,7 +35,7 @@ public function testServiceCanParseMarkdownToHtmlWithPermalinksDependingOnConfig
35
$this->assertIsString($html);
36
$this->assertStringContainsString('heading-permalink', $html, 'Permalink should be added to documentation pages by default');
37
$this->assertSame(
38
- '<h2>Hello World!<a id="hello-world" href="#hello-world" class="heading-permalink" title="Permalink"></a></h2>'."\n", $html
+ '<h2 id="hello-world">Hello World!<a href="#hello-world" class="heading-permalink" title="Permalink"></a></h2>'."\n", $html
39
);
40
41
$html = (new MarkdownService($markdown))->parse();
0 commit comments