Do not rely on the content of content_for_header
as it might change in the future, which could cause your Liquid code behavior to change.
👎 Examples of incorrect code for this check:
{% assign parts = content_for_header | split: ',' %}
👍 Examples of correct code for this check:
The only acceptable usage of content_for_header
is:
{{ content_for_header }}
The default configuration for this check is the following:
ContentForHeaderModification:
enabled: true
This check has been introduced in Theme Check 0.9.0.