-
-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #376 from knuckleswtf/missing-headings
Fix missing headings in sidebar
- Loading branch information
Showing
3 changed files
with
114 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace Knuckles\Scribe\Tools; | ||
|
||
use Illuminate\Support\Str; | ||
use Parsedown; | ||
|
||
class MarkdownParser extends Parsedown | ||
{ | ||
public array $headings = []; | ||
|
||
protected function blockHeader($Line) | ||
{ | ||
$block = parent::blockHeader($Line); | ||
if (isset($block['element']['name'])) { | ||
$level = (int) trim($block['element']['name'], 'h'); | ||
$slug = Str::slug($block['element']['text']); | ||
$block['element']['attributes']['id'] = $slug; | ||
$this->headings[] = [ | ||
'text' => $block['element']['text'], | ||
'level' => $level, | ||
'slug' => $slug, | ||
]; | ||
} | ||
|
||
return $block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters