Joe Mooring
Joe Mooring
Thanks. I waffled on this one for the reason stated above, and my opinion may change again when we have a section menu. For now I vote to merge this.
@bep I'd like to revisit this. I asked Gemini and it had this to say: > It's generally recommended that "On This Page" comes before "In This Section" in a...
See https://github.com/zerostaticthemes/hugo-serif-theme/issues/92.
With this site config: ``` summaryLength = 1 ``` The automatic summary of this Markdown: ```md > foo ``` Produces this invalid HTML (no closing `blockquote` tag): ```html foo ```...
A clean way to handle deeply nested paragraphs isn't immediately apparent. It seems like it could be complex/expensive to address. For example, with the HTML content format.... ```html --- title:...
~~We could examine `.ContentWithoutSummary` to ensure the first tag found isn't a closing tag. If it is, throw an error advising the user to provide a manual or front matter...
Additionally, once _someone_ figures that out, they should create a tips and tricks topic on the [forum](https://discourse.gohugo.io/) demonstrating how to do this with a [custom output format](https://gohugo.io/configuration/output-formats/). Regarding embedded templates:...
@bep, Yeah, I think we should add this. Although I've only found [one reference to the problem](https://discourse.gohugo.io/t/commonmark-goldmark-hugo-chinese-puncutation-and-the-bold-tag/36022) in the forum, this addition: 1. Is minimally invasive and disabled by default...
```go // Issue 14098 func TestShortcodeLookupOrderIssue14098(t *testing.T) { t.Parallel() files := ` -- hugo.toml -- disableKinds = ['home','rss','section','sitemap','taxonomy','term'] defaultContentLanguage = 'zh' defaultContentLanguageInSubdir = true [languages.zh] [languages.en] -- content/p1.en.md -- ---...
Technically, I guess the warning is correct, because we're attempting to overwrite `content/es/p1.md` with `content/en/p1.md`. The first one wins, so the published site is correct. But the warning itself should...