require golang.org/x/net v0.27.0
require git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1
+
+replace golang.org/x/net => git.earlybird.gay/x/net v0.28.1
git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1 h1:Fbz2uRIWK6CR+jcNN0KQrna4u/kYZccn2obcla7dPfQ=
git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1/go.mod h1:AxsoC2ERffYriW60C1vdV34ew6JPKxllG9mHOTs128I=
-golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
-golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=
+git.earlybird.gay/x/net v0.28.1 h1:KgeNTRFt7fJfuJcwoyeNf3g/sLQfi/+647DHslFkrv4=
+git.earlybird.gay/x/net v0.28.1/go.mod h1:K1yf3vIKjz6W4AnxgoJ67k6p0Aa5x9BcCuE/GdiZ0FA=
"regexp"
"strings"
+ "git.earlybird.gay/today-engine/htmltree"
"git.earlybird.gay/today-engine/include"
"git.earlybird.gay/today-engine/render"
"golang.org/x/net/html"
Data: "{{ $compute := .compute }}",
}, document.FirstChild)
+ // Replace template functions in the root before we add any subsources
+ htmltree.Walk(document, func(n *html.Node) (bool, error) {
+ // Replace template functions with namespaced functions.
+ replaceTemplateFuncs(root, n)
+ return false, nil
+ })
+
// Insert component sources into document
for name, subSource := range fullDependencies {
// Easiest way to tell right now is what isn't a template source,