Exemple #1
0
 /**
  * parse a HTML string
  *
  * @param string $html
  * @return string markdown formatted
  */
 function parseString($html)
 {
     $this->parser->setHTML($html);
     $this->parse();
     return $this->output;
 }