Add some missing doc comments
authorJorin Vogel <hi@jorin.me>
Wed, 2 Aug 2017 12:25:05 +0000 (14:25 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 3 Aug 2017 13:57:51 +0000 (15:57 +0200)
As pointed out by the linter, some exported functions and types are
missing doc comments.
The linter warnings have been reduced from 194 to 116.
Not all missing comments have been added in this commit though.

30 files changed:
create/content_template_handler.go
deps/deps.go
docshelper/docs.go
helpers/baseURL.go
helpers/content.go
helpers/content_renderer.go
helpers/hugo.go
helpers/language.go
helpers/path.go
hugofs/fs.go
hugolib/handler_base.go
hugolib/handler_meta.go
hugolib/multilingual.go
hugolib/page_output.go
media/mediaType.go
output/layout.go
releaser/releasenotes_writer.go
releaser/releaser.go
source/file.go
source/inmemory.go
tpl/fmt/fmt.go
tpl/math/math.go
tpl/os/os.go
tpl/partials/partials.go
tpl/strings/truncate.go
tpl/template.go
tpl/tplimpl/templateProvider.go
tpl/urls/urls.go
transform/livereloadinject.go
watcher/batcher.go

index 0be495d150965e53cfdc800fc319808a9b13b2c7..286184c2bf4e0fd40076bd2d5ab689a6b39c78be 100644 (file)
@@ -49,6 +49,7 @@ type ArchetypeFileData struct {
 }
 
 const (
+       // ArchetypeTemplateTemplate is used as inital template when adding an archetype template.
        ArchetypeTemplateTemplate = `---
 title: "{{ replace .TranslationBaseName "-" " " | title }}"
 date: {{ .Date }}
@@ -123,7 +124,7 @@ func executeArcheTypeAsTemplate(s *hugolib.Site, kind, targetPath, archetypeFile
 
        if !bytes.Contains(archetypeContent, []byte("date")) || !bytes.Contains(archetypeContent, []byte("title")) {
                // TODO(bep) remove some time in the future.
-               s.Log.FEEDBACK.Println(fmt.Sprintf(`WARNING: date and/or title missing from archetype file %q. 
+               s.Log.FEEDBACK.Println(fmt.Sprintf(`WARNING: date and/or title missing from archetype file %q.
 From Hugo 0.24 this must be provided in the archetype file itself, if needed. Example:
 %s
 `, archetypeFilename, ArchetypeTemplateTemplate))
index b5f935c0998d9b6b8b99f849d6cd7419036fef4a..ed073c5d3379cc2adaf8474ce6e8f35db60a29f2 100644 (file)
@@ -14,7 +14,7 @@ import (
 )
 
 // Deps holds dependencies used by many.
-// There will be normally be only one instance of deps in play
+// There will be normally only one instance of deps in play
 // at a given time, i.e. one per Site built.
 type Deps struct {
        // The logger to use.
@@ -55,10 +55,12 @@ type ResourceProvider interface {
        Clone(deps *Deps) error
 }
 
+// TemplateHandler returns the used tpl.TemplateFinder as tpl.TemplateHandler.
 func (d *Deps) TemplateHandler() tpl.TemplateHandler {
        return d.Tmpl.(tpl.TemplateHandler)
 }
 
+// LoadResources loads translations and templates.
 func (d *Deps) LoadResources() error {
        // Note that the translations need to be loaded before the templates.
        if err := d.translationProvider.Update(d); err != nil {
@@ -76,6 +78,9 @@ func (d *Deps) LoadResources() error {
        return nil
 }
 
+// New initializes a Dep struct.
+// Defaults are set for nil values,
+// but TemplateProvider, TranslationProvider and Language are always required.
 func New(cfg DepsCfg) (*Deps, error) {
        var (
                logger = cfg.Logger
index 3de350f614f3c28890f560e5e89026c054aeb0ae..94cb70dec97a29fc8c16893328f3cae5af334ecc 100644 (file)
@@ -19,14 +19,19 @@ import (
        "encoding/json"
 )
 
+// DocProviders contains all DocProviders added to the system.
 var DocProviders = make(map[string]DocProvider)
 
+// AddDocProvider adds or updates the DocProvider for a given name.
 func AddDocProvider(name string, provider DocProvider) {
        DocProviders[name] = provider
 }
 
+// DocProvider is used to save arbitrary JSON data
+// used for the generation of the documentation.
 type DocProvider func() map[string]interface{}
 
+// MarshalJSON returns a JSON representation of the DocProvider.
 func (d DocProvider) MarshalJSON() ([]byte, error) {
        return json.MarshalIndent(d(), "", "  ")
 }
index 5ea82b26df3710f8158da6d7e4fc81370cbc75af..eb39ced5bd978cb6b0da6bfb9363d1aa9ae6cddb 100644 (file)
@@ -30,7 +30,8 @@ func (b BaseURL) String() string {
        return b.urlStr
 }
 
-// Protocol is normally on the form "scheme://", i.e. "webcal://".
+// WithProtocol returns the BaseURL prefixed with the given protocol.
+// The Protocol is normally of the form "scheme://", i.e. "webcal://".
 func (b BaseURL) WithProtocol(protocol string) (string, error) {
        u := b.URL()
 
@@ -55,8 +56,9 @@ func (b BaseURL) WithProtocol(protocol string) (string, error) {
        return u.String(), nil
 }
 
+// URL returns a copy of the internal URL.
+// The copy can be safely used and modified.
 func (b BaseURL) URL() *url.URL {
-       // create a copy as it will be modified.
        c := *b.url
        return &c
 }
index 4c053a84dd5c145452f1f58bdc9c122b30627e9b..3c81fcd31c6a44316f3944266bbd8995db477d41 100644 (file)
@@ -42,6 +42,7 @@ var SummaryLength = 70
 // SummaryDivider denotes where content summarization should end. The default is "<!--more-->".
 var SummaryDivider = []byte("<!--more-->")
 
+// ContentSpec provides functionality to render markdown content.
 type ContentSpec struct {
        blackfriday                map[string]interface{}
        footnoteAnchorPrefix       string
@@ -50,6 +51,8 @@ type ContentSpec struct {
        cfg config.Provider
 }
 
+// NewContentSpec returns a ContentSpec initialized
+// with the appropriate fields from the given config.Provider.
 func NewContentSpec(cfg config.Provider) *ContentSpec {
        return &ContentSpec{
                blackfriday:                cfg.GetStringMap("blackfriday"),
index 10d99ec8e7307e303ba9f8f3a0b160544f160e40..5c7d854b66db2f5809556c7199985052dea8d909 100644 (file)
@@ -22,7 +22,10 @@ import (
        "github.com/russross/blackfriday"
 )
 
+// LinkResolverFunc describes a custom function to resolve a given link.
 type LinkResolverFunc func(ref string) (string, error)
+
+// FileResolverFunc describes a custom function to resolve a given file path.
 type FileResolverFunc func(ref string) (string, error)
 
 // HugoHTMLRenderer wraps a blackfriday.Renderer, typically a blackfriday.Html
@@ -32,6 +35,8 @@ type HugoHTMLRenderer struct {
        blackfriday.Renderer
 }
 
+// BlockCode renders a given text as a block of code.
+// Pygments is used if it is setup to handle code fences.
 func (r *HugoHTMLRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string) {
        if r.Cfg.GetBool("pygmentsCodeFences") && (lang != "" || r.Cfg.GetBool("pygmentsCodeFencesGuessSyntax")) {
                opts := r.Cfg.GetString("pygmentsOptions")
@@ -84,13 +89,15 @@ func (r *HugoHTMLRenderer) List(out *bytes.Buffer, text func() bool, flags int)
        }
 }
 
-// HugoMmarkHTMLRenderer wraps a mmark.Renderer, typically a mmark.html
-// Enabling Hugo to customise the rendering experience
+// HugoMmarkHTMLRenderer wraps a mmark.Renderer, typically a mmark.html,
+// enabling Hugo to customise the rendering experience.
 type HugoMmarkHTMLRenderer struct {
        mmark.Renderer
        Cfg config.Provider
 }
 
+// BlockCode renders a given text as a block of code.
+// Pygments is used if it is setup to handle code fences.
 func (r *HugoMmarkHTMLRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string, caption []byte, subfigure bool, callouts bool) {
        if r.Cfg.GetBool("pygmentsCodeFences") && (lang != "" || r.Cfg.GetBool("pygmentsCodeFencesGuessSyntax")) {
                str := html.UnescapeString(string(text))
index 61d7db00ec37e6b87e3e378456db22333c55c1b9..36001b5db2ab07ab3be238fb0b00e8551661efcd 100644 (file)
@@ -38,6 +38,7 @@ func (v HugoVersion) String() string {
        return hugoVersion(v.Number, v.PatchLevel, v.Suffix)
 }
 
+// ParseHugoVersion parses a version string.
 func ParseHugoVersion(s string) (HugoVersion, error) {
        var vv HugoVersion
 
@@ -53,6 +54,8 @@ func ParseHugoVersion(s string) (HugoVersion, error) {
        return vv, nil
 }
 
+// MustParseHugoVersion parses a version string
+// and panics if any error occurs.
 func MustParseHugoVersion(s string) HugoVersion {
        vv, err := ParseHugoVersion(s)
        if err != nil {
@@ -72,7 +75,7 @@ func (v HugoVersion) Next() HugoVersion {
        return HugoVersion{Number: v.Number + 0.01}
 }
 
-// Pre returns the previous Hugo release version.
+// Prev returns the previous Hugo release version.
 func (v HugoVersion) Prev() HugoVersion {
        return HugoVersion{Number: v.Number - 0.01}
 }
index 67db59d250a152568cd44d21136ed4f88fd3cc4b..6b4119a9bf35b1e65dc3e4595e74624c49818357 100644 (file)
@@ -35,6 +35,7 @@ var globalOnlySettings = map[string]bool{
        strings.ToLower("multilingual"):                   true,
 }
 
+// Language manages specific-language configuration.
 type Language struct {
        Lang         string
        LanguageName string
@@ -50,10 +51,13 @@ func (l *Language) String() string {
        return l.Lang
 }
 
+// NewLanguage creates a new language.
 func NewLanguage(lang string, cfg config.Provider) *Language {
        return &Language{Lang: lang, Cfg: cfg, params: make(map[string]interface{})}
 }
 
+// NewDefaultLanguage creates the default language for a config.Provider.
+// If not otherwise specified the default is "en".
 func NewDefaultLanguage(cfg config.Provider) *Language {
        defaultLang := cfg.GetString("defaultContentLanguage")
 
@@ -64,8 +68,11 @@ func NewDefaultLanguage(cfg config.Provider) *Language {
        return NewLanguage(defaultLang, cfg)
 }
 
+// Languages is a sortable list of languages.
 type Languages []*Language
 
+// NewLanguages creates a sorted list of languages.
+// NOTE: function is currently unused.
 func NewLanguages(l ...*Language) Languages {
        languages := make(Languages, len(l))
        for i := 0; i < len(l); i++ {
@@ -79,6 +86,7 @@ func (l Languages) Len() int           { return len(l) }
 func (l Languages) Less(i, j int) bool { return l[i].Weight < l[j].Weight }
 func (l Languages) Swap(i, j int)      { l[i], l[j] = l[j], l[i] }
 
+// Params retunrs language-specific params merged with the global params.
 func (l *Language) Params() map[string]interface{} {
        l.paramsInit.Do(func() {
                // Merge with global config.
index 640c97aa2fbdd55b457fe063d71b6a7a7f774961..fccba223803a0061c71311645806e0790d851f6f 100644 (file)
@@ -32,6 +32,7 @@ var (
        // ErrThemeUndefined is returned when a theme has not be defined by the user.
        ErrThemeUndefined = errors.New("no theme set")
 
+       // ErrWalkRootTooShort is returned when the root specified for a file walk is shorter than 4 characters.
        ErrWalkRootTooShort = errors.New("Path too short. Stop walking.")
 )
 
@@ -480,7 +481,7 @@ func FindCWD() (string, error) {
 
 // SymbolicWalk is like filepath.Walk, but it supports the root being a
 // symbolic link. It will still not follow symbolic links deeper down in
-// the file structure
+// the file structure.
 func SymbolicWalk(fs afero.Fs, root string, walker filepath.WalkFunc) error {
 
        // Sanity check
index 27465b4590bf294b380349459e30135eee01350f..52e27bd12f4acfc97602f910bac4000ec2b45ebb 100644 (file)
@@ -22,6 +22,8 @@ import (
 // Os points to an Os Afero file system.
 var Os = &afero.OsFs{}
 
+// Fs abstracts the file system to separate source and destination file systems
+// and allows both to be mocked for testing.
 type Fs struct {
        // Source is Hugo's source file system.
        Source afero.Fs
@@ -30,6 +32,7 @@ type Fs struct {
        Destination afero.Fs
 
        // Os is an OS file system.
+       // NOTE: Field is currently unused.
        Os afero.Fs
 
        // WorkingDir is a read-only file system
index 99c15e15ddc831260ef12381c1a0a893b227c735..10698ea7a0675d6ee1336c6401de4352ed9e048e 100644 (file)
@@ -17,6 +17,7 @@ import (
        "github.com/gohugoio/hugo/source"
 )
 
+// Handler is used for processing files of a specific type.
 type Handler interface {
        FileConvert(*source.File, *Site) HandledResult
        PageConvert(*Page) HandledResult
@@ -24,14 +25,17 @@ type Handler interface {
        Extensions() []string
 }
 
+// Handle identifies functionality assosiated with certain file extentions.
 type Handle struct {
        extensions []string
 }
 
+// Extensions returns a list of extentions.
 func (h Handle) Extensions() []string {
        return h.extensions
 }
 
+// HandledResult describes the results of a file handling operation.
 type HandledResult struct {
        page *Page
        file *source.File
@@ -55,6 +59,7 @@ func (h HandledResult) String() string {
        return h.Error()
 }
 
+// Page returns the affected page.
 func (h HandledResult) Page() *Page {
        return h.page
 }
index d2702a39ec3dacf0ed099dcb94ff167edb65d7cf..4d46e35605f35a885b2946cd18e3bc7e85373e5c 100644 (file)
@@ -23,6 +23,7 @@ import (
 
 var handlers []Handler
 
+// MetaHandler abstracts reading and converting functionality of a Handler.
 type MetaHandler interface {
        // Read the Files in and register
        Read(*source.File, *Site, HandleResults)
@@ -33,14 +34,18 @@ type MetaHandler interface {
        Handle() Handler
 }
 
+// HandledResults is a channel for HandledResult.
 type HandleResults chan<- HandledResult
 
+// NewMetaHandler creates a MetaHandle for a given extention.
 func NewMetaHandler(in string) *MetaHandle {
        x := &MetaHandle{ext: in}
        x.Handler()
        return x
 }
 
+// MetaHandle is a generic MetaHandler that internally uses
+// the globally registered handlers for handling specific file types.
 type MetaHandle struct {
        handler Handler
        ext     string
@@ -55,6 +60,7 @@ func (mh *MetaHandle) Read(f *source.File, s *Site, results HandleResults) {
        results <- HandledResult{err: errors.New("No handler found"), file: f}
 }
 
+// Convert handles the convertion of files and pages.
 func (mh *MetaHandle) Convert(i interface{}, s *Site, results HandleResults) {
        h := mh.Handler()
 
@@ -78,6 +84,7 @@ func (mh *MetaHandle) Convert(i interface{}, s *Site, results HandleResults) {
        }
 }
 
+// Handler finds the registered handler for the used extention.
 func (mh *MetaHandle) Handler() Handler {
        if mh.handler == nil {
                mh.handler = FindHandler(mh.ext)
@@ -90,6 +97,7 @@ func (mh *MetaHandle) Handler() Handler {
        return mh.handler
 }
 
+// FindHandler finds a Handler in the globally registered handlers.
 func FindHandler(ext string) Handler {
        for _, h := range Handlers() {
                if HandlerMatch(h, ext) {
@@ -99,6 +107,7 @@ func FindHandler(ext string) Handler {
        return nil
 }
 
+// HandlerMatch checks if the given extention matches.
 func HandlerMatch(h Handler, ext string) bool {
        for _, x := range h.Extensions() {
                if ext == x {
@@ -108,10 +117,12 @@ func HandlerMatch(h Handler, ext string) bool {
        return false
 }
 
+// RegisterHandler adds a handler to the globally registered ones.
 func RegisterHandler(h Handler) {
        handlers = append(handlers, h)
 }
 
+// Handlers returns the globally registered handlers.
 func Handlers() []Handler {
        return handlers
 }
index 575be1396fd2b4f04a569912b58af11c9ad3b052..953f522bde1d9625ed09ab7604c89ccff5c00dd7 100644 (file)
@@ -26,6 +26,7 @@ import (
        "github.com/spf13/cast"
 )
 
+// Multilingual manages the all languages used in a multilingual site.
 type Multilingual struct {
        Languages helpers.Languages
 
@@ -35,6 +36,7 @@ type Multilingual struct {
        langMapInit sync.Once
 }
 
+// Language returns the Language assosiated with the given string.
 func (ml *Multilingual) Language(lang string) *helpers.Language {
        ml.langMapInit.Do(func() {
                ml.langMap = make(map[string]*helpers.Language)
index 6ea466b4f65ffc1a3eaaeeaa7acfc832000a5ac7..3b1e0790736ac91f9d36af2c94f176f15ed06d94 100644 (file)
@@ -179,7 +179,7 @@ func (p *Page) checkRender() bool {
 // OutputFormats holds a list of the relevant output formats for a given resource.
 type OutputFormats []*OutputFormat
 
-// And OutputFormat links to a representation of a resource.
+// OutputFormat links to a representation of a resource.
 type OutputFormat struct {
        // Rel constains a value that can be used to construct a rel link.
        // This is value is fetched from the output format definition.
@@ -227,7 +227,7 @@ func newOutputFormat(p *Page, f output.Format) *OutputFormat {
        return &OutputFormat{Rel: rel, f: f, p: p}
 }
 
-// OutputFormats gives the alternative output formats for this PageOutput.
+// AlternativeOutputFormats gives the alternative output formats for this PageOutput.
 // Note that we use the term "alternative" and not "alternate" here, as it
 // does not necessarily replace the other format, it is an alternative representation.
 func (p *PageOutput) AlternativeOutputFormats() (OutputFormats, error) {
@@ -266,7 +266,7 @@ func (o *OutputFormat) Permalink() string {
        return perm
 }
 
-// Permalink returns the relative permalink to this output format.
+// RelPermalink returns the relative permalink to this output format.
 func (o *OutputFormat) RelPermalink() string {
        rel := o.p.createRelativePermalinkForOutputFormat(o.f)
        return o.p.s.PathSpec.PrependBasePath(rel)
index 8946a9e83f8ee89052539dca9eebdef5dfceb74c..bfeeeaa9f935a7b790d2faba0094fa1026605f72 100644 (file)
@@ -26,7 +26,7 @@ const (
        defaultDelimiter = "."
 )
 
-// A media type (also known as MIME type and content type) is a two-part identifier for
+// Type (also known as MIME type and content type) is a two-part identifier for
 // file formats and format contents transmitted on the Internet.
 // For Hugo's use case, we use the top-level type name / subtype name + suffix.
 // One example would be image/jpeg+jpg
@@ -39,7 +39,7 @@ type Type struct {
        Delimiter string `json:"delimiter"` // defaults to "."
 }
 
-// FromTypeString creates a new Type given a type sring on the form MainType/SubType and
+// FromString creates a new Type given a type sring on the form MainType/SubType and
 // an optional suffix, e.g. "text/html" or "text/html+html".
 func FromString(t string) (Type, error) {
        t = strings.ToLower(t)
index 6c054b6c44a42c7b77738db638cffb2c52cff772..ee3305758d89fe4d643697919ddc0360de4a7e1a 100644 (file)
@@ -30,7 +30,7 @@ type LayoutDescriptor struct {
        Layout  string
 }
 
-// Layout calculates the layout template to use to render a given output type.
+// LayoutHandler calculates the layout template to use to render a given output type.
 type LayoutHandler struct {
        hasTheme bool
 
@@ -44,6 +44,7 @@ type layoutCacheKey struct {
        f              Format
 }
 
+// NewLayoutHandler creates a new LayoutHandler.
 func NewLayoutHandler(hasTheme bool) *LayoutHandler {
        return &LayoutHandler{hasTheme: hasTheme, cache: make(map[layoutCacheKey][]string)}
 }
@@ -75,7 +76,7 @@ _default/indexes.VARIATIONS
 `
        layoutsTaxonomy = `
 taxonomy/SECTION.VARIATIONS
-indexes/SECTION.VARIATIONS 
+indexes/SECTION.VARIATIONS
 _default/taxonomy.VARIATIONS
 _default/list.VARIATIONS
 `
@@ -86,6 +87,8 @@ indexes/indexes.VARIATIONS
 `
 )
 
+// For returns a layout for the given LayoutDescriptor and options.
+// Layouts are rendered and cached internally.
 func (l *LayoutHandler) For(d LayoutDescriptor, layoutOverride string, f Format) ([]string, error) {
 
        // We will get lots of requests for the same layouts, so avoid recalculations.
index 1835597b6374c34980e741d1ec52b65095ca0bb7..fbce85e6d46b63bba0449cf6fc02ea4bc46eeacd 100644 (file)
@@ -11,7 +11,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-// Package release implements a set of utilities and a wrapper around Goreleaser
+// Package releaser implements a set of utilities and a wrapper around Goreleaser
 // to help automate the Hugo release process.
 package releaser
 
index 2b7dbba5f4985da2f1b1f16e870d405eb1f0d4f4..d32e511c6d6143e9f0893808957b10fc28325090 100644 (file)
@@ -31,12 +31,13 @@ import (
 
 const commitPrefix = "releaser:"
 
+// ReleaseHandler provides functionality to release a new version of Hugo.
 type ReleaseHandler struct {
        cliVersion string
 
        // If set, we do the releases in 3 steps:
-       // 1: Create and write a draft release notes
-       // 2: Prepare files for new version.
+       // 1: Create and write a draft release note
+       // 2: Prepare files for new version
        // 3: Release
        step        int
        skipPublish bool
@@ -80,6 +81,7 @@ func (r ReleaseHandler) calculateVersions() (helpers.HugoVersion, helpers.HugoVe
        return newVersion, finalVersion
 }
 
+// New initialises a ReleaseHandler.
 func New(version string, step int, skipPublish, try bool) *ReleaseHandler {
        rh := &ReleaseHandler{cliVersion: version, step: step, skipPublish: skipPublish, try: try}
 
@@ -95,6 +97,7 @@ func New(version string, step int, skipPublish, try bool) *ReleaseHandler {
        return rh
 }
 
+// Run creates a new release.
 func (r *ReleaseHandler) Run() error {
        if os.Getenv("GITHUB_TOKEN") == "" {
                return errors.New("GITHUB_TOKEN not set, create one here with the repo scope selected: https://github.com/settings/tokens/new")
index e2322bc4cb49ece1a318620ddeadc00b0737187f..cbd83d17b02b11a030692d8dccee90567f54f7f0 100644 (file)
@@ -24,6 +24,7 @@ import (
        "github.com/gohugoio/hugo/helpers"
 )
 
+// SourceSpec abstracts language-specific file creation.
 type SourceSpec struct {
        Cfg config.Provider
        Fs  *hugofs.Fs
@@ -32,6 +33,7 @@ type SourceSpec struct {
        defaultContentLanguage string
 }
 
+// NewSourceSpec initializes SourceSpec using languages from a given configuration.
 func NewSourceSpec(cfg config.Provider, fs *hugofs.Fs) SourceSpec {
        defaultLang := cfg.GetString("defaultContentLanguage")
        languages := cfg.GetStringMap("languages")
index 431236a56d6d8576a91965260b25edf138e97f7e..387bde3b8900afa3721b7720b982a6ff9d552b62 100644 (file)
@@ -13,6 +13,8 @@
 
 package source
 
+// ByteSource represents a source's name and content.
+// It's currently only used for testing purposes.
 type ByteSource struct {
        Name    string
        Content []byte
index ca31ec522b2b439fca23cda3fc2a0372f14c35d3..e9d47dbd460c7d05de7ee26211921f6c8deb0286 100644 (file)
@@ -26,15 +26,18 @@ func New() *Namespace {
 type Namespace struct {
 }
 
+// Print returns string representation of the passed arguments.
 func (ns *Namespace) Print(a ...interface{}) string {
        return _fmt.Sprint(a...)
 }
 
+// Printf returns a formatted string representation of the passed arguments.
 func (ns *Namespace) Printf(format string, a ...interface{}) string {
        return _fmt.Sprintf(format, a...)
 
 }
 
+// Print returns string representation of the passed arguments ending with a newline.
 func (ns *Namespace) Println(a ...interface{}) string {
        return _fmt.Sprintln(a...)
 }
index 303f029afade81876b1edf5bf4bd65f2de6138b7..f45488166ac69c109ddae57db66adb26f69088d4 100644 (file)
@@ -29,14 +29,17 @@ func New() *Namespace {
 // Namespace provides template functions for the "math" namespace.
 type Namespace struct{}
 
+// Add adds two numbers.
 func (ns *Namespace) Add(a, b interface{}) (interface{}, error) {
        return DoArithmetic(a, b, '+')
 }
 
+// Div divides two numbers.
 func (ns *Namespace) Div(a, b interface{}) (interface{}, error) {
        return DoArithmetic(a, b, '/')
 }
 
+// Log returns the natural logarithm of a number.
 func (ns *Namespace) Log(a interface{}) (float64, error) {
        af, err := cast.ToFloat64E(a)
 
@@ -84,10 +87,12 @@ func (ns *Namespace) ModBool(a, b interface{}) (bool, error) {
        return res == int64(0), nil
 }
 
+// Mul multiplies two numbers.
 func (ns *Namespace) Mul(a, b interface{}) (interface{}, error) {
        return DoArithmetic(a, b, '*')
 }
 
+// Sub substracts two numbers.
 func (ns *Namespace) Sub(a, b interface{}) (interface{}, error) {
        return DoArithmetic(a, b, '-')
 }
index fb60f87dd49c1971211fdd9b5ed3a792c8fed896..c9ffb81cf60a883f6b47c2cbb07a7a12bc76b8c8 100644 (file)
@@ -70,9 +70,9 @@ func readFile(fs *afero.BasePathFs, filename string) (string, error) {
        return string(b), nil
 }
 
-// ReadFilereads the file named by filename relative to the configured
-// WorkingDir.  It returns the contents as a string.  There is a upper size
-// limit set at 1 megabytes.
+// ReadFile reads the file named by filename relative to the configured WorkingDir.
+// It returns the contents as a string.
+// There is an upper size limit set at 1 megabytes.
 func (ns *Namespace) ReadFile(i interface{}) (string, error) {
        s, err := cast.ToStringE(i)
        if err != nil {
index d6e9fc9c5f538ce491f6b6fc6f0283bb8ac8117a..cf89bad37aacb7909182bf439c1c3b8f4afc409b 100644 (file)
@@ -24,6 +24,8 @@ import (
        "github.com/gohugoio/hugo/deps"
 )
 
+// TestTemplateProvider is global deps.ResourceProvider.
+// NOTE: It's currently unused.
 var TestTemplateProvider deps.ResourceProvider
 
 // partialCache represents a cache of partials protected by a mutex.
index 923816e9f481add51298fdd1d22ffb14a663a788..6e3a50ed2db068f1f08a35eab39dc2a017e4e0c7 100644 (file)
@@ -39,6 +39,7 @@ type htmlTag struct {
        openTag bool
 }
 
+// Truncate truncates a given string to the specified length.
 func (ns *Namespace) Truncate(a interface{}, options ...interface{}) (template.HTML, error) {
        length, err := cast.ToIntE(a)
        if err != nil {
index 2ee322498ec828d16ac7816bf8843c325c460b89..02d4a541c8064e82fbbd976cf98dfc4eea384b78 100644 (file)
@@ -101,6 +101,7 @@ func (t *TemplateAdapter) Tree() string {
        return s
 }
 
+// TemplateFuncsGetter allows to get a map of functions.
 type TemplateFuncsGetter interface {
        GetFuncs() map[string]interface{}
 }
index 5d5ee44b67f162270f2a42cb51f455dc01c25ec0..af89fed1133d0e535e37732b829497c4b4d5a33d 100644 (file)
@@ -17,12 +17,14 @@ import (
        "github.com/gohugoio/hugo/deps"
 )
 
+// TemplateProvider manages templates.
 type TemplateProvider struct{}
 
+// DefaultTemplateProvider is a globally available TemplateProvider.
 var DefaultTemplateProvider *TemplateProvider
 
-// Update updates the Hugo Template System in the provided Deps.
-// with all the additional features, templates & functions
+// Update updates the Hugo Template System in the provided Deps
+// with all the additional features, templates & functions.
 func (*TemplateProvider) Update(deps *deps.Deps) error {
 
        newTmpl := newTemplateAdapter(deps)
index e29cabe894faed6646c1d026af6048f146b1b0e7..817ed8b153ac963ea4d599cf886775e3a2b2cd55 100644 (file)
@@ -54,6 +54,7 @@ func (ns *Namespace) RelURL(a interface{}) (template.HTML, error) {
        return template.HTML(ns.deps.PathSpec.RelURL(s, false)), nil
 }
 
+// URLize returns the given argument formatted as URL.
 func (ns *Namespace) URLize(a interface{}) (string, error) {
        s, err := cast.ToStringE(a)
        if err != nil {
index 83fe7c1068994c4f066999328d20b1f280bdf798..4efd0151dadc8e5b616ca06825c0b793619eabdf 100644 (file)
@@ -18,6 +18,8 @@ import (
        "fmt"
 )
 
+// LiveReloadInject returns a function that can be used
+// to inject a script tag for the livereload JavaScript in a HTML document.
 func LiveReloadInject(port int) func(ct contentTransformer) {
        return func(ct contentTransformer) {
                endBodyTag := "</body>"
index 0b4083e81f763ef8302d438d2ab6facd1a6855c9..6f4b276cfe19f828870557470e46a2592619d444 100644 (file)
@@ -19,6 +19,7 @@ import (
        "github.com/fsnotify/fsnotify"
 )
 
+// Batcher batches file watch events in a given interval.
 type Batcher struct {
        *fsnotify.Watcher
        interval time.Duration
@@ -27,6 +28,7 @@ type Batcher struct {
        Events chan []fsnotify.Event // Events are returned on this channel
 }
 
+// New creates and starts a Batcher with the given time interval.
 func New(interval time.Duration) (*Batcher, error) {
        watcher, err := fsnotify.NewWatcher()
 
@@ -64,6 +66,7 @@ OuterLoop:
        close(b.done)
 }
 
+// Close stops the watching of the files.
 func (b *Batcher) Close() {
        b.done <- struct{}{}
        b.Watcher.Close()