halfcab 15.0.5 → 15.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/halfcab.mjs +2 -2
- package/package.json +1 -1
package/halfcab.mjs
CHANGED
|
@@ -359,9 +359,9 @@ function emptySSRVideos (c) {
|
|
|
359
359
|
|
|
360
360
|
function injectHTML (htmlString, options) {
|
|
361
361
|
if (options && options.wrapper === false) {
|
|
362
|
-
return
|
|
362
|
+
return unsafeHTML(htmlString)
|
|
363
363
|
}
|
|
364
|
-
return html
|
|
364
|
+
return html`<div>${unsafeHTML(htmlString)}</div>`
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
function injectMarkdown (mdString, options) {
|
package/package.json
CHANGED