//
// - "Go" (strings.Title)
// - "AP" (see https://www.apstylebook.com/)
-// - "Chicago" (see http://www.chicagomanualofstyle.org/home.html)
+// - "Chicago" (see https://www.chicagomanualofstyle.org/home.html)
// - "FirstUpper" (only the first character is upper case)
// - "None" (no transformation)
//
fs *componentFs
}
-// ReadDir reads count entries from this virtual directorie and
+// ReadDir reads count entries from this virtual directory and
// sorts the entries according to the component filesystem rules.
func (f *componentFsDir) ReadDir(count int) ([]iofs.DirEntry, error) {
fis, err := f.DirOnlyOps.(iofs.ReadDirFile).ReadDir(-1)
}
// pageTrees holds pages and resources in a tree structure for all sites/languages.
-// Eeach site gets its own tree set via the Shape method.
+// Each site gets its own tree set via the Shape method.
type pageTrees struct {
// This tree contains all Pages.
- // This include regular pages, sections, taxonimies and so on.
+ // This include regular pages, sections, taxonomies and so on.
// Note that all of these trees share the same key structure,
// so you can take a leaf Page key and do a prefix search
// with key + "/" to get all of its resources.
treePages *doctree.NodeShiftTree[contentNodeI]
- // This tree contains Resoures bundled in pages.
+ // This tree contains Resources bundled in pages.
treeResources *doctree.NodeShiftTree[contentNodeI]
// All pages and resources.
seen := map[string]bool{
change.IdentifierBase(): true,
}
- // Print the top level dependenies.
+ // Print the top level dependencies.
identity.WalkIdentitiesDeep(change, func(level int, id identity.Identity) bool {
if level > 1 {
return true
// have date literals.
// YAML
- // Note: This is with go-yaml v2, I suspect v3 will fail with the unquouted values.
+ // Note: This is with go-yaml v2, I suspect v3 will fail with the unquoted values.
b.AssertFileContent("public/en/short-date-yaml-unqouted/index.html", expectShortDateEn)
b.AssertFileContent("public/nn/short-date-yaml-unqouted/index.html", expectShortDateNn)
b.AssertFileContent("public/en/short-date-yaml-qouted/index.html", expectShortDateEn)
return h.processFull(ctx, l, *config)
}
-// assemble creates missing sections, applies agregate values (e.g. dates, cascading params),
+// assemble creates missing sections, applies aggregate values (e.g. dates, cascading params),
// removes disabled pages etc.
func (h *HugoSites) assemble(ctx context.Context, l logg.LevelLogger, bcfg *BuildCfg) error {
l = l.WithField("step", "assemble")
// From page front matter.
type pageMetaFrontMatter struct {
- configuredOutputFormats output.Formats // outputs defiend in front matter.
+ configuredOutputFormats output.Formats // outputs defined in front matter.
}
func (m *pageMetaParams) init(preserveOringal bool) {
}
- // Apply cascades first so they can be overriden later.
+ // Apply cascades first so they can be overridden later.
if cascade != nil {
if ps.m.pageConfig.Cascade != nil {
for k, v := range cascade {
opath, _ = url.QueryUnescape(opath)
if strings.HasSuffix(opath, "//") {
// When rewriting the _index of the section the permalink config is applied to,
- // we get douple slashes at the end sometimes; clear them up here
+ // we get double slashes at the end sometimes; clear them up here
opath = strings.TrimSuffix(opath, "/")
}
disableKinds = ["taxonomy", "term"]
disableLiveReload = true
[outputs]
-# This looks odd, but it triggers the behaviour in #5858
+# This looks odd, but it triggers the behavior in #5858
# The total output formats list gets sorted, so CSS before HTML.
home = [ "CSS" ]
-- content/mybundle/index.md --
files := `
-- hugo.toml --
baseURL = "https://example.com"
-disdableKinds = ["term", "taxonomy"]
+disableKinds = ["term", "taxonomy"]
disableLiveReload = true
defaultContentLanguage = "nn"
paginate = 20
// - Edit content file direct
// - Edit content file transitive shortcode
// - Edit content file transitive render hook
- // - Rename one languge version of a content file
+ // - Rename one language version of a content file
// - Delete content file, check site.RegularPages and section.RegularPagesRecursive (length)
// - Add content file (see above).
// - Edit shortcode
files := `
-- hugo.toml --
baseURL = "https://example.com"
-disdableKinds = ["term", "taxonomy"]
+disableKinds = ["term", "taxonomy"]
disableLiveReload = true
-- layouts/_default/single.html --
Single: {{ .Title }}|{{ .Content }}|
// Before Hug0 0.55 we didn't send any shortcode output to the markup
// renderer, and this flag told Hugo to process the {{ .Inner }} content
// separately.
- // The old behaviour can be had by starting your shortcode template with:
+ // The old behavior can be had by starting your shortcode template with:
// {{ $_hugo_config := `{ "version": 1 }`}}
doMarkup bool
}
}
- // Pre Hugo 0.55 this was the behaviour even for the outer-most
+ // Pre Hugo 0.55 this was the behavior even for the outer-most
// shortcode.
if sc.doMarkup && (level > 0 || sc.configVersion() == 1) {
var err error
}
}
- // Remve all files below dir.
+ // Remove all files below dir.
if len(dirs) > 0 {
n := 0
for _, d := range dirs {
if ctx.outIdx == 0 {
// Note that even if disableAliases is set, the aliases themselves are
// preserved on page. The motivation with this is to be able to generate
- // 301 redirects in a .htacess file and similar using a custom output format.
+ // 301 redirects in a .htaccess file and similar using a custom output format.
if !s.conf.DisableAliases {
// Aliases must be rendered before pages.
// Some sites, Hugo docs included, have faulty alias definitions that point
}
// Whether to render 404.html, robotsTXT.txt and similar.
-// These are useually rendered once in the root of public.
+// These are usually rendered once in the root of public.
func (s siteRenderContext) shouldRenderStandalonePage(kind string) bool {
if s.multihost || kind == kinds.KindSitemap {
// 1 per site
send chan []byte
// There is a potential data race, especially visible with large files.
- // This is protected by synchronisation of the send channel's close.
+ // This is protected by synchronization of the send channel's close.
closer sync.Once
}
// See the License for the specific language governing permissions and
// limitations under the License.
-// Package blackfriday holds some copmpability functions for the old Blackfriday v1 Markdown engine.
+// Package blackfriday holds some compability functions for the old Blackfriday v1 Markdown engine.
package blackfriday
import "unicode"
goBinaryStatus goBinaryStatus
}
-// Graph writes a module dependenchy graph to the given writer.
+// Graph writes a module dependency graph to the given writer.
func (c *Client) Graph(w io.Writer) error {
mc, coll := c.collect(true)
if coll.err != nil {
// Package pageparser provides a parser for Hugo content files (Markdown, HTML etc.) in Hugo.
// This implementation is highly inspired by the great talk given by Rob Pike called "Lexical Scanning in Go"
// It's on YouTube, Google it!.
-// See slides here: http://cuddle.googlecode.com/hg/talk/lex.html
+// See slides here: https://go.dev/talks/2011/lex.slide#1
package pageparser
spec := newTestResourceSpec(specDescriptor{c: c})
- // Two transformations with same id, different behaviour.
+ // Two transformations with same id, different behavior.
t1 := createContentReplacer("t1", "blue", "green")
t2 := createContentReplacer("t1", "color", "car")
}
// New creates and starts a Batcher with the given time interval.
-// It will fall back to a poll based watcher if native isn's supported.
+// It will fall back to a poll based watcher if native isn't supported.
// To always use polling, set poll to true.
func New(intervalBatcher, intervalPoll time.Duration, poll bool) (*Batcher, error) {
var err error