/**
  *
  * @param  string     string to markdown.
  * @return string
  */
 public static function filter($text)
 {
     static $md = null;
     if (!$md) {
         $md = new self();
     }
     return $md->doMedia($text);
 }