Versions in this module Expand all Collapse all v1 v1.3.0 Oct 15, 2014 Changes in this version + var TOKEN_COMMENT = regexp.MustCompile(`^#.*$`) + var TOKEN_LINE_CONTINUATION = regexp.MustCompile(`\\\s*$`) + var TOKEN_WHITESPACE = regexp.MustCompile(`[\t\v\f\r ]+`) + func QuoteString(str string) string + type Node struct + Attributes map[string]bool + Children []*Node + Next *Node + Original string + Value string + func Parse(rwc io.Reader) (*Node, error) + func (node *Node) Dump() string