Fix documentation of Fragments

This commit is contained in:
Timoses 2024-12-24 16:19:48 +01:00 committed by GitHub
parent 73a6cd966b
commit 41ca381b0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,14 +28,15 @@ Use the `Fragments` method on a `Page` object to create a table of contents with
## Methods ## Methods
Headings Headings
: (`map`) A nested map of all headings on the page. Each map contains the following keys: `ID`, `Level`, `Title` and `Headings`. To inspect the data structure: : (`slice`) A slice of maps of all headings on the page, with first-level keys for each heading. Each map contains the following keys: `ID`, `Level`, `Title` and `Headings`. To inspect the data structure:
```go-html-template ```go-html-template
<pre>{{ debug.Dump .Fragments.Headings }}</pre> <pre>{{ debug.Dump .Fragments.Headings }}</pre>
``` ```
HeadingsMap HeadingsMap
: (`slice`) A slice of maps of all headings on the page, with first-level keys for each heading. Each map contains the following keys: `ID`, `Level`, `Title` and `Headings`. To inspect the data structure: : (`map`) A nested map of all headings on the page. Each map contains the following keys: `ID`, `Level`, `Title` and `Headings`. To inspect the data structure:
```go-html-template ```go-html-template
<pre>{{ debug.Dump .Fragments.HeadingsMap }}</pre> <pre>{{ debug.Dump .Fragments.HeadingsMap }}</pre>