2024-05-07 12:17:25 +02:00
|
|
|
<?php
|
|
|
|
|
|
2024-08-13 13:44:16 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2024-05-07 12:17:25 +02:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace League\CommonMark\Extension\TableOfContents\Node;
|
|
|
|
|
|
2024-08-13 13:44:16 +00:00
|
|
|
use League\CommonMark\Node\Block\AbstractBlock;
|
2024-05-07 12:17:25 +02:00
|
|
|
|
|
|
|
|
final class TableOfContentsPlaceholder extends AbstractBlock
|
|
|
|
|
{
|
|
|
|
|
}
|