getAttribute('href'); $title = $element->getAttribute('title'); $text = $element->getValue(); if ($title !== '') { $markdown = '[' . $text . '](' . $href . ' "' . $title . '")'; } elseif ($href === $text) { $markdown = '<' . $href . '>'; } else { $markdown = '[' . $text . '](' . $href . ')'; } if (!$href) { $markdown = html_entity_decode($element->getChildrenAsString()); } return $markdown; } /** * @return string[] */ public function getSupportedTags() { return array('a'); } }