Joe Mooring
Joe Mooring
@gwagner Are you able to provide a reproducible example?
As mentioned above, I am unable to reproduce this problem with the test repo above. It would helpful if someone were able to share a repository.
The panic is triggered when the weight of the html output format is greater than the weight of the json output format, or when the weight of the output format...
This came up again today, but when using a module. I am unable to find a workaround. ```text git clone --single-branch -b hugo-github-issue-8077 https://github.com/jmooring/hugo-testing hugo-github-issue-8077 cd hugo-github-issue-8077 hugo server ```...
Setting `defaultOutputFormat = 'html'` makes the problem go away, but we shouldn't have to do that. This is a failing test case involving a module that defines an output format...
For example... markdown ```text a b c ``` `.Summary` is rendered to: ```html a ``` `.Content` is rendered to: ```html a b c ``` In the above, wrapping the summary...
@daviddavo The `relativeURLs` setting should only be used when creating a server-less site, navigable via the file system. The [documentation](https://gohugo.io/content-management/urls/#relative-urls) includes the following guidance: > Do not enable this option...
I am unable to reproduce the problem with: ```text hugo server --bind 192.168.1.5 --baseURL http://192.168.1.5 ``` I get the expected result with: ```text curl -v http://192.168.1.5:1313 ``` Tested with hugo...
There's not much to go on here. Can you provide a minimal example?
Please create an issue [upstream](https://github.com/alecthomas/chroma/issues) and reference it here. A simple example... ````text ```graphql query { a b } ``` ```` Is rendered to:  The problem is that "a"...