input: `{% set style = ((style is defined) and style and (style in validStyles)) ? style : 'link' %}` output: ``` {% set style = style is defined and style and style in validStyles ? style : 'link' %} ``` Could there be a flag (or is there) to _not_ remove those?