golang `text/template` parsing
Accidentally Quadratic
Go’s text/template package implements a templating system for Go. Like many templating systems, when it loads a template it parses it into an AST, which can then be walked to render the template against one or more inputs. AST nodes in the template AST hold the line number from which that element...