Joe Mooring
Joe Mooring
The [content format](https://gohugo.io/content-management/formats/) is irrelevant. If a content file does not include front matter, the first character must not be `+`, `-`, or `{`. The only situation in which it...
Explanation: Other approaches to creating TOC:
Reference: If you place `## Example [hyperlink](https://example.com/) in a header` within a README.md file in a GitHub repository... 1. The link is retained within the `h2` element 2. The id...
[bluemonday](https://github.com/microcosm-cc/bluemonday) might be handy here: ```go package main import ( "fmt" "github.com/microcosm-cc/bluemonday" ) func main() { p := bluemonday.NewPolicy() p.AllowElements("code", "del", "em", "ins", "mark", "span", "strong", "sub", "sup") html :=...
While this may be valuable, from your GitHub history it looks like you've created the same issue in many repositories. So, at first glance, this is a bit spammy.
> What do you think? I think this sounds like a lot of work with a low ROI, but maybe I'm missing something.
Prior to v0.136.0 this emits a warning. With v0.136.0 and later this emits an error and fails the build.
I've tested this a bit. It works as expected except for `ContentWithoutSummary` which is expected at this point. I did not play with the scope as described above because: 1....
@taxilian Please post the markdown you used for testing. I suspect you have double-escaped something, but we shouldn't be throwing an error. For example, with this markdown (note the erroneous...
@kirawi We have a few exclusions related to vim, but nothing for .bck files. https://github.com/gohugoio/hugo/blob/e1becf1dfe31bec65eca585ac66a2d10f1651e42/commands/hugobuilder.go#L779-L794