summaryrefslogtreecommitdiff
path: root/html/html.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/html.go')
-rw-r--r--html/html.go19
1 files changed, 8 insertions, 11 deletions
diff --git a/html/html.go b/html/html.go
index 33e5cc4..05e091b 100644
--- a/html/html.go
+++ b/html/html.go
@@ -18,28 +18,26 @@ var (
tag Parser
identifier = Regex("[a-zA-Z][a-zA-Z0-9]*")
- text = NotChars("<>").Map(func(n Result) Result {
- return Result{Result: n.Token}
- })
+ text = NotChars("<>").Map(func(n *Result) { n.Result = n.Token })
element = Any(text, &tag)
- elements = Some(element).Map(func(n Result) Result {
+ elements = Some(element).Map(func(n *Result) {
ret := []interface{}{}
for _, child := range n.Child {
ret = append(ret, child.Result)
}
- return Result{Result: ret}
+ n.Result = ret
})
attr = Seq(identifier, "=", StringLit(`"'`))
- attrs = Some(attr).Map(func(node Result) Result {
+ attrs = Some(attr).Map(func(node *Result) {
attr := map[string]string{}
for _, attrNode := range node.Child {
attr[attrNode.Child[0].Token] = attrNode.Child[2].Result.(string)
}
- return Result{Result: attr}
+ node.Result = attr
})
tstart = Seq("<", identifier, Cut(), attrs, ">")
@@ -47,13 +45,12 @@ var (
)
func init() {
- tag = Seq(tstart, Cut(), elements, tend).Map(func(node Result) Result {
+ tag = Seq(tstart, Cut(), elements, tend).Map(func(node *Result) {
openTag := node.Child[0]
- return Result{Result: htmlTag{
+ node.Result = htmlTag{
Name: openTag.Child[1].Token,
Attributes: openTag.Child[3].Result.(map[string]string),
Body: node.Child[2].Result.([]interface{}),
- }}
-
+ }
})
}