9

Is there a smarty tag that allows skipping content in a template without the enclosed code showing up in the rendered HTML page?

James P.
  • 19,313
  • 27
  • 97
  • 155

1 Answers1

13

Do you mean something like the Comment Tag?

{* Comment *}

Your question is a bit difficult to understand or do you mean a minifying?

René Höhle
  • 26,716
  • 22
  • 73
  • 82
  • That's exactly what I'm looking for. Thanks. I wasn't able to find it but apparently it's mentionned somewhere basic syntax. It would have been surprising if such a tag didn't exist :) – James P. May 11 '11 at 11:12
  • In Showare6 the twig engine is used. Comments now are {# the content #} – Eumolpius Oct 07 '21 at 14:22