package internal
import (
"io"
"golang.org/x/net/html"
)
type Doc struct{}
type Assets struct {
Images []Asset
Styles []Asset
Scripts []Asset
}
// Merges an HTML document over top of a base template.
//
//
// - of the new doc overrides the base unless the base
// contains {{content}}, in which case the new title is substituted
// -