Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 803 Bytes

raw.md

File metadata and controls

39 lines (32 loc) · 803 Bytes
id blueprint modifier_types title
e100a366-b69c-4d59-bec7-eac18c0b286b
modifiers
string
array
utility
Raw

Overview

Returns the unaugmented version of the variable.

Example

If you had a Markdown field and wanted to render the actual Markdown-formatted text instead of rendered HTML, you can do this:

The YAML

markdown_field: >
  # How to Breakdance

  First you do the fancy kicky thing with your feets, and then
  you flail your legs around like a battery operated fan at a hot
  summer ballgame.

The Template

{{ markdown_field | raw }}

The Output

# How to Breakdance

First you do the fancy kicky thing with your feets,
and then you flail your legs around like a battery
operated fan at a hot summer ballgame.