Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
league
/
commonmark
/
src
/
Extension
/
FrontMatter
/
Input
Location:
/home/zoteqbgb/public_html/vendor/league/commonmark/src/Extension/FrontMatter/Input
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: MarkdownInputWithFrontMatter.php
<?php /* * This file is part of the league/commonmark package. * * (c) Colin O'Dell <colinodell@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace League\CommonMark\Extension\FrontMatter\Input; use League\CommonMark\Extension\FrontMatter\FrontMatterProviderInterface; use League\CommonMark\Input\MarkdownInput; final class MarkdownInputWithFrontMatter extends MarkdownInput implements FrontMatterProviderInterface { /** @var mixed|null */ private $frontMatter; /** * @param string $content Markdown content without the raw front matter * @param int $lineOffset Line offset (based on number of front matter lines removed) * @param mixed|null $frontMatter Parsed front matter */ public function __construct(string $content, int $lineOffset = 0, $frontMatter = null) { parent::__construct($content, $lineOffset); $this->frontMatter = $frontMatter; } /** * {@inheritDoc} */ public function getFrontMatter() { return $this->frontMatter; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
MarkdownInputWithFrontMatter.php
1,186 bytes
0644
2024-12-29 19:10
âï¸
ðï¸
Rename
Chang
Apply