Identifies invalid HTML inside translations. ## Examples The following examples contain code snippets that either fail or pass this check. ### ✗ Fail ```html { "hello_html": "

Hello, world

", "image_html": "Unclosed" } ``` ### ✓ Pass ```html { "hello_html": "

Hello, world

", "image_html": "", "line_break_html": "
", "self_closing_svg_html": "" } ``` ## Options ```yaml ValidHTMLTranslation enabled: true severity: warning ``` | Parameter | Description | | --- | --- | | `enabled` | Whether this check is enabled. | | `severity` | The [severity](https://shopify.dev/themes/tools/theme-check/configuration#check-severity) of the check. | ## Disabling this check Disabling this check isn't recommended.