Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 401 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 401 Bytes

Phug Parser

What is Phug Parser?

The Phug parser utilizes the Phug lexer and parses the tokens it generates into an AST

Installation

Install via Composer

composer require phug/parser

Usage

$parser = new Phug\Parser($options);
$root = $parser->parse($pugInput);

//$root is now a Phug\Parser\Node\DocumentNode element