Index: trunk/phase3/maintenance/parserTests.txt |
— | — | @@ -247,10 +247,12 @@ |
248 | 248 | !! test |
249 | 249 | Comment semantics and delimiters: directors cut |
250 | 250 | !! input |
251 | | -<!-- ... However we're purely an XML shop you see, so we eat everything |
252 | | -starting with < followed by !-- until the first -- and > we see, observe: -->--> |
| 251 | +<!-- ... However we like to keep things simple and somewhat XML-ish so we eat |
| 252 | +everything starting with < followed by !-- until the first -- and > we see, |
| 253 | +that wouldn't be valid XML however, since in XML -- has to terminate a comment |
| 254 | +-->--> |
253 | 255 | !! result |
254 | | -<p>--> |
| 256 | +<p>--> |
255 | 257 | </p> |
256 | 258 | !! end |
257 | 259 | |
— | — | @@ -259,7 +261,7 @@ |
260 | 262 | !! input |
261 | 263 | <!--<!-- no, we're not going to do anything fancy here -->--> |
262 | 264 | !! result |
263 | | -<p>--> |
| 265 | +<p>--> |
264 | 266 | </p> |
265 | 267 | !! end |
266 | 268 | |