mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
17 lines
321 B
PHP
17 lines
321 B
PHP
<?php
|
|
|
|
namespace Erusev\Parsedown\Components;
|
|
|
|
use Erusev\Parsedown\Parsing\Context;
|
|
use Erusev\Parsedown\State;
|
|
|
|
interface ContinuableBlock extends Block
|
|
{
|
|
/**
|
|
* @param Context $Context
|
|
* @param State $State
|
|
* @return static|null
|
|
*/
|
|
public function advance(Context $Context, State $State);
|
|
}
|