60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package html
|
|
|
|
import (
|
|
. "github.com/vektah/goparsify"
|
|
)
|
|
|
|
func Parse(input string) (result interface{}, err error) {
|
|
return Run(tag, input)
|
|
}
|
|
|
|
type Tag struct {
|
|
Name string
|
|
Attributes map[string]string
|
|
Body []interface{}
|
|
}
|
|
|
|
var (
|
|
tag Parser
|
|
|
|
identifier = NoAutoWS(Merge(Seq(WS(), Chars("a-zA-Z", 1), Chars("a-zA-Z0-9", 0))))
|
|
text = Map(NotChars("<>"), func(n Result) Result {
|
|
return Result{Result: n.Token}
|
|
})
|
|
|
|
element = Any(text, &tag)
|
|
elements = Map(Some(element), func(n Result) Result {
|
|
ret := []interface{}{}
|
|
for _, child := range n.Child {
|
|
ret = append(ret, child.Result)
|
|
}
|
|
return Result{Result: ret}
|
|
})
|
|
|
|
attr = Seq(identifier, "=", StringLit(`"'`))
|
|
attrs = Map(Some(attr), func(node Result) Result {
|
|
attr := map[string]string{}
|
|
|
|
for _, attrNode := range node.Child {
|
|
attr[attrNode.Child[0].Token] = attrNode.Child[2].Result.(string)
|
|
}
|
|
|
|
return Result{Result: attr}
|
|
})
|
|
|
|
tstart = Seq("<", identifier, attrs, ">")
|
|
tend = Seq("</", identifier, ">")
|
|
)
|
|
|
|
func init() {
|
|
tag = Map(Seq(tstart, elements, tend), func(node Result) Result {
|
|
openTag := node.Child[0]
|
|
return Result{Result: Tag{
|
|
Name: openTag.Child[1].Token,
|
|
Attributes: openTag.Child[2].Result.(map[string]string),
|
|
Body: node.Child[1].Result.([]interface{}),
|
|
}}
|
|
|
|
})
|
|
}
|