line()->indent() > 3) { return null; } $marker = \substr($Context->line()->text(), 0, 1); if ($marker !== '*' && $marker !== '-' && $marker !== '_') { return null; } if ( \substr_count($Context->line()->text(), $marker) >= 3 && \chop($Context->line()->text(), " \t$marker") === '' ) { return new self; } return null; } /** * @return Element */ public function stateRenderable() { return Element::selfClosing('hr', []); } }