Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
56
vendor/doctrine/rst-parser/lib/Directives/Raw.php
vendored
Normal file
56
vendor/doctrine/rst-parser/lib/Directives/Raw.php
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Doctrine\RST\Directives;
|
||||
|
||||
use Doctrine\RST\Nodes\CodeNode;
|
||||
use Doctrine\RST\Nodes\Node;
|
||||
use Doctrine\RST\Parser;
|
||||
|
||||
/**
|
||||
* Renders a raw block, example:
|
||||
*
|
||||
* .. raw::
|
||||
*
|
||||
* <u>Undelined!</u>
|
||||
*/
|
||||
final class Raw extends Directive
|
||||
{
|
||||
public function getName(): string
|
||||
{
|
||||
return 'raw';
|
||||
}
|
||||
|
||||
/** @param string[] $options */
|
||||
public function process(
|
||||
Parser $parser,
|
||||
?Node $node,
|
||||
string $variable,
|
||||
string $data,
|
||||
array $options
|
||||
): void {
|
||||
if ($node === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
$kernel = $parser->getKernel();
|
||||
|
||||
if ($node instanceof CodeNode) {
|
||||
$node->setRaw(true);
|
||||
}
|
||||
|
||||
if ($variable !== '') {
|
||||
$environment = $parser->getEnvironment();
|
||||
$environment->setVariable($variable, $node);
|
||||
} else {
|
||||
$document = $parser->getDocument();
|
||||
$document->addNode($node);
|
||||
}
|
||||
}
|
||||
|
||||
public function wantCode(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue