OLD | NEW |
(Empty) | |
| 1 <nowiki>{{foo}} ''bar'' <baz></nowiki> |
| 2 <source>{{foo}} ''bar'' <baz></source> |
| 3 <pre>{{foo}} ''bar'' <baz></pre> |
| 4 |
| 5 ---------------------------------------------------- |
| 6 |
| 7 [ |
| 8 ["nowiki", [ |
| 9 ["tag", [ |
| 10 ["tag", [ |
| 11 ["punctuation", "<"], |
| 12 "nowiki" |
| 13 ]], |
| 14 ["punctuation", ">"] |
| 15 ]], |
| 16 "{{foo}} ''bar'' <baz>", |
| 17 ["tag", [ |
| 18 ["tag", [ |
| 19 ["punctuation", "</"], |
| 20 "nowiki" |
| 21 ]], |
| 22 ["punctuation", ">"] |
| 23 ]] |
| 24 ]], |
| 25 ["nowiki", [ |
| 26 ["tag", [ |
| 27 ["tag", [ |
| 28 ["punctuation", "<"], |
| 29 "source" |
| 30 ]], |
| 31 ["punctuation", ">"] |
| 32 ]], |
| 33 "{{foo}} ''bar'' <baz>", |
| 34 ["tag", [ |
| 35 ["tag", [ |
| 36 ["punctuation", "</"], |
| 37 "source" |
| 38 ]], |
| 39 ["punctuation", ">"] |
| 40 ]] |
| 41 ]], |
| 42 ["nowiki", [ |
| 43 ["tag", [ |
| 44 ["tag", [ |
| 45 ["punctuation", "<"], |
| 46 "pre" |
| 47 ]], |
| 48 ["punctuation", ">"] |
| 49 ]], |
| 50 "{{foo}} ''bar'' <baz>", |
| 51 ["tag", [ |
| 52 ["tag", [ |
| 53 ["punctuation", "</"], |
| 54 "pre" |
| 55 ]], |
| 56 ["punctuation", ">"] |
| 57 ]] |
| 58 ]] |
| 59 ] |
| 60 |
| 61 ---------------------------------------------------- |
| 62 |
| 63 Checks that no highlighting is done inside <nowiki>, <pre> and <source> tags. |
OLD | NEW |