mirror of https://github.com/gohugoio/hugo
17 lines
328 B
Markdown
17 lines
328 B
Markdown
---
|
|
title: Content
|
|
description: Returns the rendered content of the given page.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
returnType: template.HTML
|
|
signatures: [PAGE.Content]
|
|
---
|
|
|
|
The `Content` method on a `Page` object renders Markdown and shortcodes to HTML.
|
|
|
|
```go-html-template
|
|
{{ .Content }}
|
|
```
|