Complete the code to render raw HTML stored in the variable content.
<div>[1] content</div>Use {@html} to render raw HTML in Svelte.
Complete the code to safely render the variable htmlString as HTML inside a section.
<section>[1] htmlString</section>{@html} tells Svelte to render the string as HTML inside the element.
Fix the error in rendering the variable rawHtml as HTML inside a div.
<div>[1] rawHtml</div>Only {@html} correctly renders raw HTML strings in Svelte.
Fill both blanks to render htmlContent as HTML inside a section and add an ARIA label for accessibility.
<section aria-label=[1]>[2] htmlContent</section>
Use a string with quotes for the ARIA label and {@html} to render HTML.
Fill all three blanks to render dynamicHtml safely, add an ARIA label, and use a main semantic element.
<main aria-label=[1]>[2] dynamicHtml <footer>[3]</footer></main>
Use quotes for ARIA label, {@html} to render HTML, and plain text for footer content.