Joe Mooring

Results 602 comments of Joe Mooring

Confirmed. ```bash git clone --single-branch -b hugo-github-issue-9216 https://github.com/jmooring/hugo-testing hugo-github-issue-9216 cd hugo-github-issue-9216 hugo server ``` Look at the Français home page. The translation for "dog" is missing even though it is...

I would abstract this a bit, allowing any page param to be specified. If it's scalar, cast to string, throw error on empty string. If it's a slice, use first...

@dvdksn @khayyamsaleem @UtkarshVerma If you have some time, see if you can determine _which_ environment variable(s) are required, starting with the usual suspects (HOME, LANG, USER, USERNAME, PWD, GOPROXY, etc.)....

@nathlaroche Please see my previous comment, and help narrow this down if you can. Thanks.

@UtkarshVerma Look at the env vars that are set on your system. With Linux that's the `env` command.

@UtkarshVerma I'm pretty sure the XDG_CONFIG_HOME dependency is related to git, or to how you have configured git. See

Summarizing what we know so far... The current (v0.92.0) default is: ```toml [security.exec] osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$'] ``` Based on the comments above, it looks like this would need to be:...

Currently, with` hugo new content/foo.bar.baz.de.md`, `.File.TranslationBaseName` is `foo.bar.baz`. Will this change? I have seen several sites where the "." separator is used... abundantly.

This works if `notAlternative = false` for all output formats. ``` {{ (index (complement .AlternativeOutputFormats .OutputFormats) 0).Name }} ```

The high-level desire is to specify a sort method as well as a sort direction. Whether those are specified together in a single string, in separate args, or in a...