class Node in Markdown 3.0.x
Class MarkdownNode.
Hierarchy
- class \Drupal\markdown\Twig\Markdown\Node extends \Drupal\markdown\Twig\Markdown\Twig_Node
Expanded class hierarchy of Node
1 string reference to 'Node'
- HashAutolinker::settingsForm in src/
Plugin/ Markdown/ Extension/ HashAutolinker.php - Returns the configuration form elements specific to this plugin.
File
- src/
Twig/ Markdown/ Node.php, line 10
Namespace
Drupal\markdown\Twig\MarkdownView source
class Node extends \Twig_Node {
/**
* {@inheritdoc}
*/
public function __construct(\Twig_Node $value, $line, $tag = NULL) {
parent::__construct([
'value' => $value,
], [
'name' => $tag,
], $line, $tag);
}
/**
* {@inheritdoc}
*/
public function compile(Compiler $compiler) {
$compiler
->addDebugInfo($this)
->write('ob_start();' . PHP_EOL)
->subcompile($this
->getNode('value'))
->write('$content = ob_get_clean();' . PHP_EOL)
->write('preg_match("/^\\s*/", $content, $matches);' . PHP_EOL)
->write('$lines = explode("\\n", $content);' . PHP_EOL)
->write('$content = preg_replace(\'/^\' . $matches[0]. \'/\', "", $lines);' . PHP_EOL)
->write('$content = implode("\\n", $content);' . PHP_EOL)
->write('echo $this->env->getTags()["markdown"]->getMarkdown()->parse($content);' . PHP_EOL);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Node:: |
public | function | ||
Node:: |
public | function |