mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
640 B
PHP
16 lines
640 B
PHP
|
<?php namespace BookStack\Entities\Tools\Markdown;
|
||
|
|
||
|
use League\CommonMark\ConfigurableEnvironmentInterface;
|
||
|
use League\CommonMark\Extension\ExtensionInterface;
|
||
|
use League\CommonMark\Extension\Strikethrough\Strikethrough;
|
||
|
use League\CommonMark\Extension\Strikethrough\StrikethroughDelimiterProcessor;
|
||
|
|
||
|
class CustomStrikeThroughExtension implements ExtensionInterface
|
||
|
{
|
||
|
|
||
|
public function register(ConfigurableEnvironmentInterface $environment)
|
||
|
{
|
||
|
$environment->addDelimiterProcessor(new StrikethroughDelimiterProcessor());
|
||
|
$environment->addInlineRenderer(Strikethrough::class, new CustomStrikethroughRenderer());
|
||
|
}
|
||
|
}
|