Skip to content
This repository was archived by the owner on Apr 8, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ See the [extension installation guide](https://code.visualstudio.com/docs/editor
## Supported languages

* Styles: CSS, Less, Sass, SCSS
* Styles inside `<style>` or `<style lang="LANGUAGE">` tags: HTML, Vue
* Styles inside `<style>` or `<style lang="LANGUAGE">` tags: HTML, Vue, Svelte

> ⚠️ The plugin does not support formatting when saving template files (HTML, Vue) by `formatOnSave` option and formatting of the selected fragments (selections).
> ⚠️ The plugin does not support formatting when saving template files (HTML, Vue, Svelte) by `formatOnSave` option and formatting of the selected fragments (selections).

## Supported settings

Expand Down
2 changes: 1 addition & 1 deletion src/providers/embedded.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@ export default class EmbeddedProvider extends BaseProvider {
}

public supportedSyntaxes(): string[] {
return ['html', 'htm', 'vue', 'vue-html'];
return ['html', 'htm', 'vue', 'vue-html', 'svelte'];
}
}