Файловый менеджер - Редактировать - /home/lmsyaran/public_html/libraries/gantry5/classes/Gantry/Component/Twig/TokenParser/TokenParserMarkdown.php
Назад
<?php /** * @package Gantry5 * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC * @license Dual License: MIT or GNU/GPLv2 and later * * http://opensource.org/licenses/MIT * http://www.gnu.org/licenses/gpl-2.0.html * * Gantry Framework code that extends GPL code is considered GNU/GPLv2 and later */ namespace Gantry\Component\Twig\TokenParser; use Gantry\Component\Twig\Node\TwigNodeMarkdown; /** * Adds ability to inline markdown between tags. * * {% markdown %} * This is **bold** and this _underlined_ * * 1. This is a bullet list * 2. This is another item in that same list * {% endmarkdown %} */ class TokenParserMarkdown extends \Twig_TokenParser { /** * {@inheritdoc} */ public function parse(\Twig_Token $token) { $lineno = $token->getLine(); $this->parser->getStream()->expect(\Twig_Token::BLOCK_END_TYPE); $body = $this->parser->subparse(array($this, 'decideMarkdownEnd'), true); $this->parser->getStream()->expect(\Twig_Token::BLOCK_END_TYPE); return new TwigNodeMarkdown($body, $lineno, $this->getTag()); } /** * Decide if current token marks end of Markdown block. * * @param \Twig_Token $token * @return bool */ public function decideMarkdownEnd(\Twig_Token $token) { return $token->test('endmarkdown'); } /** * {@inheritdoc} */ public function getTag() { return 'markdown'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка