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
1.4 KiB
1.4 KiB
title | description | categories | keywords | action | aliases | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
RenderString | Renders markup to HTML. |
|
|
{{ $s := "An *emphasized* word" }}
{{ $s | .RenderString }} → An <em>emphasized</em> word
This method takes an optional map of options:
- display
- (
string
) Specify eitherinline
orblock
. Ifinline
, removes surroundingp
tags from short snippets. Default isinline
. - markup
- (
string
) Specify a markup identifier for the provided markup. Default is themarkup
front matter value, falling back to the value derived from the page's file extension.
Render with the default markup renderer:
{{ $s := "An *emphasized* word" }}
{{ $s | .RenderString }} → An <em>emphasized</em> word
{{ $opts := dict "display" "block" }}
{{ $s | .RenderString $opts }} → <p>An <em>emphasized</em> word</p>
Render with Pandoc:
{{ $s := "H~2~O" }}
{{ $opts := dict "markup" "pandoc" }}
{{ $s | .RenderString $opts }} → H<sub>2</sub>O
{{ $opts := dict "display" "block" "markup" "pandoc" }}
{{ .RenderString $opts $s }} → <p>H<sub>2</sub>O</p>