mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
22 lines
526 B
Markdown
22 lines
526 B
Markdown
---
|
|
title: Content
|
|
description: Returns the rendered content of the given page.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
related:
|
|
- methods/page/RawContent
|
|
- methods/page/Plain
|
|
- methods/page/PlainWords
|
|
- methods/page/RenderShortcodes
|
|
returnType: template.HTML
|
|
signatures: [PAGE.Content]
|
|
---
|
|
|
|
The `Content` method on a `Page` object renders markdown and shortcodes to HTML. The content does not include front matter.
|
|
|
|
[shortcodes]: /getting-started/glossary/#shortcode
|
|
|
|
```go-html-template
|
|
{{ .Content }}
|
|
```
|