1
0
mirror of https://github.com/golang/go synced 2024-11-18 18:04:46 -07:00
go/godoc/pres.go
Brad Fitzpatrick 5395cfe05a godoc: remove more global variables
More moves into Corpus and Presentation.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/11492043
2013-07-18 13:14:09 +10:00

44 lines
845 B
Go

// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package godoc
import (
"regexp"
"sync"
"text/template"
)
// Presentation generates output from a corpus.
type Presentation struct {
Corpus *Corpus
// TabWidth optionally specifies the tab width.
TabWidth int
ShowTimestamps bool
ShowPlayground bool
ShowExamples bool
DeclLinks bool
NotesRx *regexp.Regexp
initFuncMapOnce sync.Once
funcMap template.FuncMap
templateFuncs template.FuncMap
}
// NewPresentation returns a new Presentation from a corpus.
func NewPresentation(c *Corpus) *Presentation {
if c == nil {
panic("nil Corpus")
}
return &Presentation{
Corpus: c,
TabWidth: 4,
ShowExamples: true,
DeclLinks: true,
}
}