mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-03 14:23:42 +08:00
28 lines
658 B
PHP
28 lines
658 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Entities\Tools\Markdown;
|
||
|
|
||
|
use League\HTMLToMarkdown\Converter\ConverterInterface;
|
||
|
use League\HTMLToMarkdown\ElementInterface;
|
||
|
|
||
|
class CheckboxConverter implements ConverterInterface
|
||
|
{
|
||
|
|
||
|
public function convert(ElementInterface $element): string
|
||
|
{
|
||
|
if (strtolower($element->getAttribute('type')) === 'checkbox') {
|
||
|
$isChecked = $element->getAttribute('checked') === 'checked';
|
||
|
return $isChecked ? ' [x] ' : ' [ ] ';
|
||
|
}
|
||
|
|
||
|
return $element->getValue();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string[]
|
||
|
*/
|
||
|
public function getSupportedTags(): array
|
||
|
{
|
||
|
return ['input'];
|
||
|
}
|
||
|
}
|