diff options
author | 2021-03-21 20:34:11 -0700 | |
---|---|---|
committer | 2021-03-21 20:34:11 -0700 | |
commit | 6e4367fd490f9c1748288ac10f2bf27632ae7a03 (patch) | |
tree | f9c74768a506ed506e9e8e1e032c7688db4b5017 /src/compiler/parse | |
parent | e03afbd980f4e0226136b3324c6f166ec8a18a8e (diff) | |
download | astro-6e4367fd490f9c1748288ac10f2bf27632ae7a03.tar.gz astro-6e4367fd490f9c1748288ac10f2bf27632ae7a03.tar.zst astro-6e4367fd490f9c1748288ac10f2bf27632ae7a03.zip |
another pass at head/body handling in pages
Diffstat (limited to 'src/compiler/parse')
-rw-r--r-- | src/compiler/parse/state/tag.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/parse/state/tag.ts b/src/compiler/parse/state/tag.ts index 898aaed12..8ce297bfd 100644 --- a/src/compiler/parse/state/tag.ts +++ b/src/compiler/parse/state/tag.ts @@ -14,8 +14,8 @@ import list from '../../utils/list.js'; const valid_tag_name = /^\!?[a-zA-Z]{1,}:?[a-zA-Z0-9\-]*/; const meta_tags = new Map([ - ['slot:head', 'Head'], - ['slot:body', 'Body'], + ['astro:head', 'Head'], + // ['slot:body', 'Body'], // ['astro:options', 'Options'], // ['astro:window', 'Window'], // ['astro:body', 'Body'], |