Joe Mooring

Results 604 comments of Joe Mooring

> I doubt that that is the culprit. The `err` value is "http: invalid character in file path"

@dgerhardt I am unable to reproduce this: template ``` {{ $i := resources.Get "a.jpg" }} {{ $i = $i.Resize "300x webp" }} ``` commands ```bash rm -rf resources/ public/ hugo...

@dgerhardt Using your example I get this: ```text public/ ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_76c7cf38bf945b0ffcde1085a8d98901.cb37525879289f1d2049cb89754bdbbe4b5eff8b16cdb6a7ffbd90c4ce063d5d.jpg └── index.html resources/ └── _gen/ ├── assets/ └── images/ ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_76c7cf38bf945b0ffcde1085a8d98901.jpg ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_9dc8b79c16d49a9a446321e1b68e4900.jpg ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_c2318e86b543017d2554be662dc27ffb.jpg ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_e9431206c87606187680d7f79cafe08d.jpg ├── _hu21ab6d3fcb85df7d479b326f59a26776_0_edd9e18643cc4ca510ad18a504ab4300.jpg...

Confirmed. MRE: ```bash git clone --single-branch -b hugo-github-issue-10255 https://github.com/jmooring/hugo-testing hugo-github-issue-10255 cd hugo-github-issue-10255 hugo && tree public resources # Results are expected hugo && tree public resources # Results are NOT...

I am unable to reproduce the problem. https://user-images.githubusercontent.com/335669/154813527-44af87ca-d262-4a1f-908e-c6bfd8a9a777.mp4

I can reproduce the problem when ranging over `.Data.Terms` in layouts/_default/taxonomy.html. For example: ``` {{ range .Data.Terms }} {{ .Page.Title }} {{ end }} ``` I cannot reproduce the problem...

Call the shortcode using the `{{% %}}` notation. ``` {{% link page="page1" type="header" %}}Heading text{{% /link %}} ```

@doompadee Upon further review, I am unable to reproduce the behavior you initially reported. markdown ```md #### {{< link page="page1" type="header" >}}Heading text{{< /link >}} ## {{< link page="page2" type="header"...

@EmilySeville7cfg It looks like you have put a lot of effort into this, and conceptually it is a nice idea, but I'm not convinced that the value it provides is...

@TenSketch Please use the forum (https://discourse.gohugo.io) for questions and troubleshooting. We prefer to use GitHub for verified bugs and vetted enhancements. Thanks.