Skip to content

Commit

Permalink
Document Page.Markup
Browse files Browse the repository at this point in the history
  • Loading branch information
jmooring committed Aug 14, 2024
1 parent 2f793d3 commit c8f29f1
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions content/en/methods/page/Contents.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
title: Markup
description: # TODO
categories: []
keywords: []
action:
related: []
returnType: # TODO
signatures: [PAGE.Markup]
---

<!-- TODO -->

<!-- JMM It is unclear to me if things like .Page.CountWords will be deprecated in favor of .Page.Contents.CountWords. Three levels (Page, Markup, Countwords) is a bit of a pain to document with the current docs theme. -->

## Methods

###### CountWords
(`int`) <!-- TODO -->

###### CountWordsFuzzy
(`int`) <!-- TODO -->

###### Fragments
(`tableofcontents.Fragments`) <!-- TODO -->

###### FragmentsHTML
(`template.HTML`) <!-- TODO -->

###### HasShortcode
(`bool`) <!-- TODO -->

###### Len
(`int`) <!-- TODO -->

###### Plain
(`string`) <!-- TODO -->

###### PlainWords
(`string array`) <!-- TODO -->

###### ReadingTime
(`int`) <!-- TODO -->

###### Render
(`any`) <!-- TODO -->

###### RenderShortcodes
(`template.HTM`) <!-- TODO -->

###### RenderString
(`template.HTM`) <!-- TODO -->

###### Summary
(`template.HTML`) <!-- TODO -->

## Example

<!-- TODO -->

```go-html-template
{{ range .Pages }}
{{ with .Markup }}
{{ .Countwords }}
{{ .Render }}
{{ end }}
{{ end }}
```

0 comments on commit c8f29f1

Please sign in to comment.