package internal import ( "bytes" "fmt" "io" "log" "strings" "golang.org/x/net/html" "golang.org/x/net/html/atom" ) type Doc struct{} type Assets struct { Images []Asset Styles []Asset Scripts []Asset } type Asset struct{} // Merges an HTML document over top of a base template. // //
// -