mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-21 10:03:13 +00:00
18 lines
620 B
Markdown
18 lines
620 B
Markdown
|
# VSCode support for Dioxus html macro
|
||
|
|
||
|
This macro provides syntax highlighting for the html! macro used in Dioxus projects. Users should feel at home writing html and css alongside the custom attributes used by Dioxus.
|
||
|
|
||
|
|
||
|
## How it works
|
||
|
This extension works by:
|
||
|
- Creating a custom HTML ruleset for dioxus html! nodes
|
||
|
- Request forwarding content
|
||
|
|
||
|
|
||
|
## Resources
|
||
|
Request forwarding is performed intelligently by the extension.
|
||
|
Requests within the html! tag are forwarded to the html language service. It's simple and doesn't
|
||
|
|
||
|
https://code.visualstudio.com/api/language-extensions/embedded-languages#language-services
|
||
|
|