mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl: Add godoc packages comments
Also fix package name in tpl/templates.
This commit is contained in:
parent
8346848109
commit
30a7c9ea37
23 changed files with 29 additions and 3 deletions
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package cast provides template functions for data type conversions.
|
||||
package cast
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package collections provides template functions for manipulating collections
|
||||
// such as arrays, maps, and slices.
|
||||
package collections
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package compare provides template functions for comparing values.
|
||||
package compare
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package crypto provides template functions for cryptographic operations.
|
||||
package crypto
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package data provides template functions for working with external data
|
||||
// sources.
|
||||
package data
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package encoding provides template functions for encoding content.
|
||||
package encoding
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package fmt provides template functions for formatting strings.
|
||||
package fmt
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package images provides template functions for manipulating images.
|
||||
package images
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package inflect provides template functions for the inflection of words.
|
||||
package inflect
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package lang provides template functions for content internationalization.
|
||||
package lang
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package math provides template functions for mathmatical operations.
|
||||
package math
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package os provides template functions for interacting with the operating
|
||||
// system.
|
||||
package os
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package partials provides template functions for working with reusable
|
||||
// templates.
|
||||
package partials
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package path provides template functions for manipulating paths.
|
||||
package path
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package resources provides template functions for working with resources.
|
||||
package resources
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package safe provides template functions for escaping untrusted content or
|
||||
// encapsulating trusted content.
|
||||
package safe
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package strings provides template functions for manipulating strings.
|
||||
package strings
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package partials
|
||||
package templates
|
||||
|
||||
import (
|
||||
"github.com/gohugoio/hugo/deps"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package partials
|
||||
package templates
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package partials
|
||||
// Package templates provides template functions for working with templates.
|
||||
package templates
|
||||
|
||||
import (
|
||||
"github.com/gohugoio/hugo/deps"
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package time provides template functions for measuring and displaying time.
|
||||
package time
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package transform provides template functions for transforming content.
|
||||
package transform
|
||||
|
||||
import (
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Package urls provides template functions to deal with URLs.
|
||||
package urls
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in a new issue