コード例 #1
0
ファイル: Lexer.php プロジェクト: breeswish/php-marked
 public static function doLex($src, $options)
 {
     $lexer = new Lexer($options);
     return $lexer->lex($src);
 }