Apply suggestions from code review

svelte-html
Simon H 10 months ago committed by GitHub
parent 81bd13173b
commit 5ba013efa3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,6 @@
/** @import { Payload } from '#server' */ /** @import { Payload } from '#server' */
import { escape } from '..'; import { escape_html } from '../../../escaping.js';
/** /**
* @param {Payload} payload * @param {Payload} payload
@ -8,6 +8,6 @@ import { escape } from '..';
*/ */
export function svelte_html(payload, attributes) { export function svelte_html(payload, attributes) {
for (const name in attributes) { for (const name in attributes) {
payload.htmlAttributes.set(name, escape(attributes[name], true)); payload.htmlAttributes.set(name, escape_html(attributes[name], true));
} }
} }

Loading…
Cancel
Save