diff --git a/docs/rules/no-deprecated-raw-special-elements.md b/docs/rules/no-deprecated-raw-special-elements.md index aa4254bf..e945266c 100644 --- a/docs/rules/no-deprecated-raw-special-elements.md +++ b/docs/rules/no-deprecated-raw-special-elements.md @@ -7,14 +7,14 @@ description: 'Disallows valid Svelte 4 tags, that no are no longer valid in Svel # svelte/no-deprecated-raw-special-elements -> Disallows valid Svelte 4 tags, that no are no longer valid in Svelte 5 +> Recommends not using raw special elements in Svelte versions previous to 5. - :exclamation: **_This rule has not been released yet._** - :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. ## :book: Rule Details -This rule reports the invalid usage of `head`, `body`, `window`, `document`, `element` and `options` HTML elements, **in Svelte 5**. These elements were valid in Svelte 4, but since Svelte 5 they must be used with `svelte:`. +This rule reports the usage of `head`, `body`, `window`, `document`, `element` and `options` HTML elements. These elements were valid in in versions proior to 5, but since Svelte 5 they must be used with `svelte:`.