Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
28
vendor/doctrine/rst-parser/lib/Renderers/SpanRenderer.php
vendored
Normal file
28
vendor/doctrine/rst-parser/lib/Renderers/SpanRenderer.php
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Doctrine\RST\Renderers;
|
||||
|
||||
use Doctrine\RST\References\ResolvedReference;
|
||||
|
||||
interface SpanRenderer
|
||||
{
|
||||
public function emphasis(string $text): string;
|
||||
|
||||
public function strongEmphasis(string $text): string;
|
||||
|
||||
public function nbsp(): string;
|
||||
|
||||
public function br(): string;
|
||||
|
||||
public function literal(string $text): string;
|
||||
|
||||
/** @param mixed[] $attributes */
|
||||
public function link(?string $url, string $title, array $attributes = []): string;
|
||||
|
||||
public function escape(string $span): string;
|
||||
|
||||
/** @param string[] $value */
|
||||
public function reference(ResolvedReference $reference, array $value): string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue