Hi,
Would it be possible to do something like this:
{{ with .GetPage "example.md" }}
{{ range .Content }}
{{.}}
{{ end}
{{ end }}
And then check for an element?
I want to generate A new section based on every H1 in an element. Currently its just one list of html so I was thinking if I can check if currently line starts with <h1> insert a </section><section>. Or is there a better way to do so?