Fix articles
This commit is contained in:
@@ -27,7 +27,7 @@ function inlineLocalStylesFromHref($inputString): string
|
||||
// Minify the CSS content
|
||||
$cssContent = minifyCss($cssContent);
|
||||
|
||||
return "<style>{$cssContent}</style>";
|
||||
return "<style>$cssContent</style>";
|
||||
}, $inputString);
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ function inlineScriptFromSrc($inputString): string
|
||||
|
||||
// Minify the JavaScript content
|
||||
$jsContent = minifyJs($jsContent);
|
||||
return "<script>{$jsContent}</script>";
|
||||
return "<script>$jsContent</script>";
|
||||
}, $inputString);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user