If description can be evaluated to true , {{ if description }} may work.
But to check if the variable really exists (~ is not null), you can use the exists keyword, for example: {{ if exists description }} .
If you are not sure that description always exists, you should also put it in the "if" area, for example:
{{ if exists description }} {{ description }} ME {{ endif }} LIKE
Take a look at these documentation links:
source share