1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Backtracking capable inlines better expressed by interface

This commit is contained in:
Aidan Woods
2019-02-22 14:56:22 +00:00
parent 4501a094db
commit 4adbd0b8a7
18 changed files with 41 additions and 35 deletions

View File

@@ -3,13 +3,14 @@
namespace Erusev\Parsedown\Components\Inlines;
use Erusev\Parsedown\AST\StateRenderable;
use Erusev\Parsedown\Components\BacktrackingInline;
use Erusev\Parsedown\Components\Inline;
use Erusev\Parsedown\Html\Renderables\Element;
use Erusev\Parsedown\Html\Renderables\Text;
use Erusev\Parsedown\Parsing\Excerpt;
use Erusev\Parsedown\State;
final class Url implements Inline
final class Url implements BacktrackingInline
{
use WidthTrait;