mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-26 15:11:46 +08:00
57ea2e92ec
- Removed ZIP system for now, until the idea can be fleshed out. - Added testing to cover. - Upgraded used library. - Added custom handling for BookStack callouts. - Added HTML cleanup to better produce output for things like code blocks.
18 lines
565 B
PHP
18 lines
565 B
PHP
<?php namespace BookStack\Entities\Tools\Markdown;
|
|
|
|
use League\HTMLToMarkdown\Converter\ParagraphConverter;
|
|
use League\HTMLToMarkdown\ElementInterface;
|
|
|
|
class CustomParagraphConverter extends ParagraphConverter
|
|
{
|
|
public function convert(ElementInterface $element): string
|
|
{
|
|
$class = $element->getAttribute('class');
|
|
if (strpos($class, 'callout') !== false) {
|
|
return "<{$element->getTagName()} class=\"{$class}\">{$element->getValue()}</{$element->getTagName()}>\n\n";
|
|
}
|
|
|
|
return parent::convert($element);
|
|
}
|
|
}
|