Skip to content

Instantly share code, notes, and snippets.

@allmarkedup
Created February 19, 2016 22:26
Show Gist options
  • Save allmarkedup/82bf0f489ec593b744d6 to your computer and use it in GitHub Desktop.
Save allmarkedup/82bf0f489ec593b744d6 to your computer and use it in GitHub Desktop.
{{ figure.content }} {!-- prints out ok, not markdown converted --}
{!-- Won't work! In handlebars every time you enter a block your scope depth changes --}
{{#markdown}}
{{ figure.content }}
{{/markdown}}
{!-- Will work - need to use the ../ to move back up in scope --}
{{#markdown}}
{{ ../figure.content }}
{{/markdown}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment