Identifies LiquidHTML syntax errors.
## Examples
The following examples contain code snippets that either fail or pass this check.
### ✗ Fail
The example below is missing a closing bracket `%}`.
```liquid
unclosed
{% include 'muffin'
{% assign foo = 1 }}
{% unknown %}
{% if collection | size > 0 %}
```
### ✓ Pass
```liquid
closed
{% include 'muffin' %}
{% assign foo = 1 %}
{% if collection.size > 0 %}{% endif %}
```
## Disabling this check
Disabling this check isn't recommended.
## Aliases
For backward compatibility with configuration files made for Theme Check `v1.X.X`, this check is also recognized in configuration files with the following names:
- `HtmlParsingError`
- `SyntaxError`