html-validate 10.13.0 → 10.13.1

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.
@@ -1108,7 +1108,7 @@ var html5 = {
1108
1108
  }
1109
1109
  },
1110
1110
  head: {
1111
- implicitClosed: ["body"],
1111
+ implicitClosed: ["body", "@flow-not-meta"],
1112
1112
  optionalEnd: true,
1113
1113
  permittedContent: ["base?", "title?", "@meta"],
1114
1114
  permittedParent: ["html"],
@@ -1178,6 +1178,10 @@ var html5 = {
1178
1178
  }
1179
1179
  },
1180
1180
  html: {
1181
+ implicitOpen: [
1182
+ { for: ["@meta"], open: "head" },
1183
+ { for: ["@flow-not-meta"], open: "body" }
1184
+ ],
1181
1185
  optionalEnd: true,
1182
1186
  permittedContent: ["head?", "body?"],
1183
1187
  permittedOrder: ["head", "body"],