From a785a2dd863c951c5fad9df6bce5663925857448 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Tue, 13 Aug 2024 13:25:58 -0700 Subject: [PATCH] Document Page.Markup --- content/en/methods/page/Markup.md | 68 +++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 content/en/methods/page/Markup.md diff --git a/content/en/methods/page/Markup.md b/content/en/methods/page/Markup.md new file mode 100644 index 00000000000..edd12465b4e --- /dev/null +++ b/content/en/methods/page/Markup.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 }} +```