Markdownify\ConverterExtra::handleTag_fn PHP Метод

handleTag_fn() защищенный Метод

handle tags (custom footnotes, see markdownify_extra::parseString() and markdownify_extra::_makeFootnotes())
protected handleTag_fn ( ) : void
Результат void
    protected function handleTag_fn()
    {
        if ($this->parser->isStartTag) {
            $this->out('[^' . $this->parser->tagAttributes['name'] . ']:');
            $this->setLineBreaks(1);
        } else {
            $this->setLineBreaks(2);
        }
        $this->indent('    ');
    }