Skip to content

Commit

Permalink
Return default value
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Feb 4, 2024
1 parent 86a30f8 commit 86f31c1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/BladedownCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public function __construct(BladedownPage $page)

public function compile(): string
{
//
return view($this->page->getBladeView(), [
'title' => $this->page->title,
'content' => $this->page->markdown->toHtml(static::class),
])->render();
}
}

0 comments on commit 86f31c1

Please sign in to comment.