diff --git a/content/en/methods/page/Contents.md b/content/en/methods/page/Contents.md new file mode 100644 index 0000000000..edd12465b4 --- /dev/null +++ b/content/en/methods/page/Contents.md @@ -0,0 +1,68 @@ +--- +title: Markup +description: # TODO +categories: [] +keywords: [] +action: + related: [] + returnType: # TODO + signatures: [PAGE.Markup] +--- + + + + + +## Methods + +###### CountWords +(`int`) + +###### CountWordsFuzzy +(`int`) + +###### Fragments +(`tableofcontents.Fragments`) + +###### FragmentsHTML +(`template.HTML`) + +###### HasShortcode +(`bool`) + +###### Len +(`int`) + +###### Plain +(`string`) + +###### PlainWords +(`string array`) + +###### ReadingTime +(`int`) + +###### Render +(`any`) + +###### RenderShortcodes +(`template.HTM`) + +###### RenderString +(`template.HTM`) + +###### Summary +(`template.HTML`) + +## Example + + + +```go-html-template +{{ range .Pages }} + {{ with .Markup }} + {{ .Countwords }} + {{ .Render }} + {{ end }} +{{ end }} +```