9ef8555ad2
DefaultFormatter: - format 'a' tag content and not href attribute - format hashtags properly Markdown(Extra)Formatter: - Extend Parsedown to format highlight properly: https://github.com/erusev/parsedown/wiki/Tutorial:-Create-Extensions Fixes #1681
10 lines
160 B
PHP
10 lines
160 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shaarli\Formatter\Parsedown;
|
|
|
|
class ShaarliParsedownExtra extends \ParsedownExtra
|
|
{
|
|
use ShaarliParsedownTrait;
|
|
}
|