|
@@ -1,6 +1,7 @@
|
|
<script>
|
|
<script>
|
|
import Nested from './Nested.svelte';
|
|
import Nested from './Nested.svelte';
|
|
let src = './dancing-man.gif';
|
|
let src = './dancing-man.gif';
|
|
|
|
+ let string = `this string contains some <strong>HTML!!!</strong>`;
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
|
|
@@ -18,4 +19,5 @@
|
|
<p>This is a paragraph.</p>
|
|
<p>This is a paragraph.</p>
|
|
<Nested/>
|
|
<Nested/>
|
|
<img src={src} alt="A man dances.">
|
|
<img src={src} alt="A man dances.">
|
|
|
|
+ <p>{@html string}</p>
|
|
</div>
|
|
</div>
|