Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bangnokia committed Mar 23, 2024
1 parent 1217e15 commit 8d702a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/Commands/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function handle(): int

protected function buildItem(Content $item, MarkdownRenderer $renderer): void
{
$this->info('Building ' . $item->path . '...');
echo 'Building ' . $item->path . PHP_EOL;

$directory = getcwd() . '/public/' . ($item->url() === '/' ? 'index.html' : ($item->url() . '/index.html'));

Expand Down
1 change: 1 addition & 0 deletions app/Markdown/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Parser extends \ParsedownToC
public function __construct()
{
parent::__construct();

$this->highlighter = new Highlighter();
}

Expand Down

0 comments on commit 8d702a1

Please sign in to comment.