@@ -2367,10 +2367,10 @@ the first line meets both the [start condition] and the [end
23672367condition], the block will contain just that line.
23682368
236923691. **Start condition:** line begins with the string `<script`,
2370- `<pre`, or `<style` (case-insensitive), followed by a space, a tab ,
2371- the string `>`, or the end of the line.\
2370+ `<pre`, `<textarea`, or `<style` (case-insensitive), followed by a space,
2371+ a tab, the string `>`, or the end of the line.\
23722372**End condition:** line contains an end tag
2373- `</script>`, `</pre>`, or `</style>` (case-insensitive; it
2373+ `</script>`, `</pre>`, `</textarea>`, or `</style>` (case-insensitive; it
23742374need not match the start tag).
23752375
237623762. **Start condition:** line begins with the string `<!--`.\
@@ -2760,6 +2760,26 @@ document.getElementById("demo").innerHTML = "Hello JavaScript!";
27602760````````````````````````````````
27612761
27622762
2763+ A textarea tag (type 1):
2764+
2765+ ```````````````````````````````` example
2766+ <textarea>
2767+
2768+ *foo*
2769+
2770+ _bar_
2771+
2772+ </textarea>
2773+ .
2774+ <textarea>
2775+
2776+ *foo*
2777+
2778+ _bar_
2779+
2780+ </textarea>
2781+ ````````````````````````````````
2782+
27632783A style tag (type 1):
27642784
27652785```````````````````````````````` example
0 commit comments