Map
Syntax
{[ map [statement] into [key] [value] ]}
Body, optionally using {{ key }} and {{ value }}
{[/]}{
"attributes": {
"Stamina": "10",
"Agility": "20",
"Intelligence": "9001"
}
}Last updated
{[ map [statement] into [key] [value] ]}
Body, optionally using {{ key }} and {{ value }}
{[/]}{
"attributes": {
"Stamina": "10",
"Agility": "20",
"Intelligence": "9001"
}
}Last updated
<h1>Player stats</h1>
<ul>
{[ map attributes to attributeName attributeValue ]}
<li>{{ attributeName }}: ({{ attributeValue }})</li>
{[/]}
</ul><h1>Player stats</h1>
<ul>
<li>Stamina: 10</li>
<li>Agility: 20</li>
<li>Intelligence: 9001</li>
</ul>