chore: code comment formatting (#1089) [ci skip]

This commit is contained in:
HiiTea
2020-05-02 06:48:44 +08:00
committed by GitHub
parent 98bee596bd
commit f0d52d5428

View File

@@ -56,9 +56,9 @@ export const defaultParserOptions: MergedParserOptions = {
export const enum TextModes {
// | Elements | Entities | End sign | Inside of
DATA, // | ✔ | ✔ | End tags of ancestors |
RCDATA, // | ✘ | ✔ | End tag of the parent | <textarea>
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>
CDATA,
ATTRIBUTE_VALUE
}