Ejemplo n.º 1
0
 /**
  *
  */
 public function testHello()
 {
     $lexer = new Markdown\Lexer();
     $source = file_get_contents($this->dataPath("section-01.md"));
     $lexer->setSource($source);
     echo PHP_EOL;
     while ($t = $lexer->nextToken()) {
         // echo json_encode($t->core(), JSON_UNESCAPED_SLASHES) . PHP_EOL;
     }
 }