I have an api that returns html with classes, I want to know how I can use svelte style definition for those.
App.Svelte
<script>
let string = `<span class="status">ok</span>`;
</script>
<p>{@html string}</p>
<style>
.status {
color: red
}
</style>
...
{@html marked}
Returns
Unused CSS selector (8:1)