mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
17 lines
425 B
PHP
17 lines
425 B
PHP
<?php
|
|
|
|
namespace Erusev\Parsedown\Components;
|
|
|
|
use Erusev\Parsedown\Parsing\Excerpt;
|
|
|
|
interface BacktrackingInline extends Inline
|
|
{
|
|
/**
|
|
* Return an integer to declare that the inline should be treated as if it
|
|
* started from that position in the excerpt given to static::build.
|
|
* Return null to use the excerpt offset value.
|
|
* @return int|null
|
|
* */
|
|
public function modifyStartPositionTo();
|
|
}
|