We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98bee59 commit f0d52d5Copy full SHA for f0d52d5
packages/compiler-core/src/parse.ts
@@ -56,9 +56,9 @@ export const defaultParserOptions: MergedParserOptions = {
56
57
export const enum TextModes {
58
// | Elements | Entities | End sign | Inside of
59
- DATA, // | ✔ | ✔ | End tags of ancestors |
60
- RCDATA, // | ✘ | ✔ | End tag of the parent | <textarea>
61
- RAWTEXT, // | ✘ | ✘ | End tag of the parent | <style>,<script>
+ DATA, // | ✔ | ✔ | End tags of ancestors |
+ RCDATA, // | ✘ | ✔ | End tag of the parent | <textarea>
+ RAWTEXT, // | ✘ | ✘ | End tag of the parent | <style>,<script>
62
CDATA,
63
ATTRIBUTE_VALUE
64
}
0 commit comments