vendor/twig/markdown-extra/LeagueMarkdown.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Twig.
  4.  *
  5.  * (c) Fabien Potencier
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Twig\Extra\Markdown;
  11. use League\CommonMark\CommonMarkConverter;
  12. class LeagueMarkdown implements MarkdownInterface
  13. {
  14.     private $converter;
  15.     public function __construct(CommonMarkConverter $converter null)
  16.     {
  17.         $this->converter $converter ?: new CommonMarkConverter();
  18.     }
  19.     public function convert(string $body): string
  20.     {
  21.         return $this->converter->convertToHtml($body);
  22.     }
  23. }