Markdownify\ConverterExtra::handleTag_fn PHP Method

handleTag_fn() protected method

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