예제 #1
0
 public function __construct($markdown, $flags = 0)
 {
     parent::__construct();
     $inputMask = MarkdownDocument::NOHEADER | MarkdownDocument::TABSTOP;
     $this->initFromString((string) $markdown, $flags & $inputMask);
     $this->compile((int) $flags & ~$inputMask);
 }