type golang.org/x/pkgsite/internal/frontend.Section

10 uses

	golang.org/x/pkgsite/internal/frontend (current package)
		imports.go#L78: 	ImportedBy []*Section
		section.go#L13: type Section struct {
		section.go#L15: 	Subs     []*Section // subsections
		section.go#L19: func newSection(prefix string) *Section {
		section.go#L20: 	return &Section{Prefix: prefix, NumLines: 0}
		section.go#L23: func (s *Section) add(sub *Section) {
		section.go#L41: func Sections(lines []string, nextPrefix prefixFunc) []*Section {
		section.go#L48: func section(prefix string, lines []string, nextPrefix prefixFunc) (*Section, []string) {
		section.go#L57: 		var sub *Section