* * @link https://github.com/thephpleague/html-to-markdown/ Latest version on GitHub. * * @license http://www.opensource.org/licenses/mit-license.php MIT */ interface HtmlConverterInterface { /** * Convert the given $html to Markdown * * @param string $html * * @throws \InvalidArgumentException * * @return string The Markdown version of the html */ public function convert($html); }