We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4946b7a commit 0997085Copy full SHA for 0997085
src/core/Meta.js
@@ -8,7 +8,8 @@ export class Meta extends Element {
8
9
render() {
10
const attrs = Object.entries(this.attributes)
11
- .map(([key, value]) => `${key}="${value}"`)
+ .map(([key,
12
+ value]) => `${key}="${value}"`)
13
.join(" ");
14
return `<meta ${attrs}>`;
15
}
src/core/Style.js
@@ -9,7 +9,8 @@ export class Style extends Element {
return `<style${attrs ? " " + attrs : ""}>\n${this.content}\n</style>`;
16
0 commit comments