mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-07 16:06:53 +00:00
minor #4649 Coding standard suggestion about empty content (VincentLanglet)
This PR was merged into the 3.x branch.
Discussion
----------
Coding standard suggestion about empty content
Hi `@fabpot`
As suggested by `@stof` https://github.com/symfony/symfony/pull/60761#discussion_r2140647490
This would allow writing `{#--#}` rather than `{#- -#}` when following the twig coding standard.
Commits
-------
0b93a1fa5a Stof suggestion about empty content
This commit is contained in:
@@ -11,12 +11,13 @@ When writing Twig templates, we recommend you to follow these official coding
|
||||
standards:
|
||||
|
||||
* Put exactly one space after the start of a delimiter (``{{``, ``{%``,
|
||||
and ``{#``) and before the end of a delimiter (``}}``, ``%}``, and ``#}``):
|
||||
and ``{#``) and before the end of a delimiter (``}}``, ``%}``, and ``#}``)
|
||||
if the content is non empty:
|
||||
|
||||
.. code-block:: twig
|
||||
|
||||
{{ user }}
|
||||
{# comment #}
|
||||
{# comment #} {##}
|
||||
{% if user %}{% endif %}
|
||||
|
||||
When using the whitespace control character, do not put any spaces between
|
||||
@@ -25,7 +26,7 @@ standards:
|
||||
.. code-block:: twig
|
||||
|
||||
{{- user -}}
|
||||
{#- comment -#}
|
||||
{#- comment -#} {#--#}
|
||||
{%- if user -%}{%- endif -%}
|
||||
|
||||
* Put exactly one space before and after the following operators:
|
||||
|
||||
Reference in New Issue
Block a user