1

I'm using Nette framework which comes with Latte templates. My problem starts when I have non-latte macros inside my Latte template. Of course Latte throws an exception about invalid macros.

So how can I disable using Latte macros or just pass a blank HTML template instead of Latte into the view?

jmeinlschmidt
  • 1,446
  • 2
  • 14
  • 33

1 Answers1

1

use {syntax off}

documentation https://latte.nette.org/en/macros#toc-syntax-switching

jmeinlschmidt
  • 1,446
  • 2
  • 14
  • 33