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.
17 lines
565 B
PHP
17 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);
|
|
}
|
|
}
|