mood.parser

Undocumented in source.

Members

Functions

parseDHTML
Node[] parseDHTML(string[] tokens)

* Parses tokenized html data. * * Takes in tokenized html data and outputs a set of nodes that contain information about itself. * * Params: * tokens = The tokens that are output from tokenizing the html data. * Returns: Parsed html nodes.

tokenizeDHTML
string[] tokenizeDHTML(string dhtml)

* Takes raw html data and tokenizes it. * * Does not completely parse the html, but is used to make parsing much easier, and to seperate it into different parts. * * Params: * dhtml = The html that is to be tokenized. * Returns: Tokenized html in the form of a string array.

Meta