foundation / panini

A super simple flat file generator.
Other
592 stars 104 forks source link

Panini should not render templates included in script tags. #179

Closed fabiocaccamo closed 5 years ago

fabiocaccamo commented 5 years ago
{{ rendered_by_panini }}

<script id="my-template" type="text/x-handlebars-template">
    {{ rendered_manually }}
</script>
gakimball commented 5 years ago

You can surround a chunk of code with {{{{raw}}}} and Handlebars will ignore everything inside it.

{{ rendered_by_panini }}

{{{{raw}}}}
<script id="my-template" type="text/x-handlebars-template">
    {{ rendered_manually }}
</script>
{{{{/raw}}}}
fabiocaccamo commented 5 years ago

@gakimball thank you!