HTML Tags - Svelte

Component

here's some HTML!!!

Source Code

<script>
	let string = `here's some <strong>HTML!!!</strong>`;
</script>

<p>{@html string}</p>