Joe Mooring

Results 604 comments of Joe Mooring

I cannot reproduce the problem using this minimal example: ```text git clone --single-branch -b hugo-github-issue-13492 https://github.com/jmooring/hugo-testing hugo-github-issue-13492 cd hugo-github-issue-13492 npm ci hugo ``` layouts/_default/baseof.html ```text {{ partialCached "css.html" . }}...

@myOmikron This is obviously a bug, but you can work around it by using a lowercase language identifier when naming your content files. For example, use `index.en-us.md` instead of `index.en-US.md`.

Failing test: ```go func TestFoo(t *testing.T) { t.Parallel() files := ` -- hugo.toml -- defaultContentLanguage = "de-DE" disableKinds = ['home','section','rss','sitemap','taxonomy','term'] [languages.de-DE] weight = 1 baseURL = "https://example.de" [languages.en-US] weight =...

> Now, if someone could contribute with some short documentation about how to use this image To get started: Docs issue:

The underlying problem isn't limited to taxonomy terms. For example, `hugo new nul/p1.md` throws: > Error: process: readAndProcessContent: walk: Readdir: readdir C:\temp\foo\content\nul: Incorrect function. And you're left with a directory...

Of all of the file names listed above, only "nul" (including case variations) causes a problem. Command|Notes :--|:-- `hugo new nul.md`|File is created without error. Error thrown when building the...

@McShelby > adding a blank line This is required per the CommonMark specification for [HTML blocks](https://spec.commonmark.org/0.31.2/#html-blocks). Specifically, read about the end condition for the sixth "type" of HTML block.

If I were looking in our documentation for a template function that reverses a string, I would look for something in the strings namespace. The string "Hello 👋🏿" will be...

> how useful it is This is the first request I've seen.

Closing for now. Uncommon use case and non-trivial implementation.