Skip to content

Instantly share code, notes, and snippets.

@devmnj
Created October 31, 2022 07:43
Show Gist options
  • Select an option

  • Save devmnj/8cb2dd61da1cdc550207f183938efe4b to your computer and use it in GitHub Desktop.

Select an option

Save devmnj/8cb2dd61da1cdc550207f183938efe4b to your computer and use it in GitHub Desktop.
Styling inner tags in (@html in) Svelte
<script>
let name = '<b>w</b>orld';
</script>
<h1>Hello {@html name}!</h1>
<style>
:global(b){
color:blue;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment