collect-attributes-in-tree | (collect-attributes-in-tree tree attr-key) | Traverse the parse tree, tree, and return the list all attribute values of the attribute attr-key found
in the tree. |
indentation-delta | indentation-delta | An integer which gives the level of indentation
|
is-tag-of-kind? | (is-tag-of-kind? tag-kind) | Return a predicate which tests whether a subtree or node is of tag-kind (a symbol or string). |
parse-tree-to-ast | (parse-tree-to-ast pt) | Convert a HTML/XML parse tree to an abstract syntax tree. |
parse-tree-to-element-structure | (parse-tree-to-element-structure pt) | Convert a HTML/XML parse tree to an element structure ala LENO. |
parse-tree-to-laml | (parse-tree-to-laml tree output-file) | Transform an XML or HTML parse tree to a similar surface LAML expression on output-file. |
parse-xml | (parse-xml file-path) | This function parses a file and returns the parse tree. |
parse-xml-file | (parse-xml-file in-file-path out-file-path) | Top level parse function which takes an XML file name as input, and delivers a parse tree on out-file-path. |
parser-status | (parser-status) | Display parser status in case of error in the parse process. |
prefered-maximum-width | prefered-maximum-width | An integer that expresses the preferred maximum column width
|
pretty-print-xml-parse-tree | (pretty-print-xml-parse-tree parse-tree) | Pretty prints a HTML parse tree, and return the result as a string. |
pretty-print-xml-parse-tree-file | (pretty-print-xml-parse-tree-file in-file-path [out-file-path]) | Pretty prints the XML parse tree (Lisp file) in in-file-path. |
resulting-parse-tree | resulting-parse-tree | A global varible holding the latest produced parse tree
|
traverse-and-collect-from-parse-tree | (traverse-and-collect-from-parse-tree tree node-interesting? result-transformer) | Traverse the parse tree, tree, and return a list of result-transformed nodes
that satisfy the node-interesting? predicate in the parse tree. |
use-single-lining | use-single-lining | A boolean which controls the application of single line pretty printing. |