summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/runtime/server/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/runtime/server/index.ts b/packages/astro/src/runtime/server/index.ts
index 2a5543d49..f748e73ff 100644
--- a/packages/astro/src/runtime/server/index.ts
+++ b/packages/astro/src/runtime/server/index.ts
@@ -208,7 +208,7 @@ export function createAstro(fileURLStr: string, site: string): TopLevelAstro {
};
}
-const toAttributeString = (value: any) => String(value).replace(/&/g, '&').replace(/"/g, '"')
+const toAttributeString = (value: any) => String(value).replace(/&/g, '&').replace(/"/g, '"');
// A helper used to turn expressions into attribute key/value
export function addAttribute(value: any, key: string) {