Test 030: Testing TAGDEPENDENT tags.
* Start tag (no parms), some text, end tag:
Before the tag
Start tag called, parms=""
Body called, parms="", body follows:
some text
That was the body
End tag called
after the tag
*Start tag (some parms), some text, end tag:
Before the tag
Start tag called, parms="some parms"
Body called, parms="some parms", body follows:
some text
That was the body
End tag called
after the tag
*Same as before, but multi-line body:
Before the tag
Start tag called, parms="some parms"
Body called, parms="some parms", body follows:
some
text
That was the body
End tag called
after the tag
* Auto-end tag with parms:
Before the tag
Start tag called, parms="some parms "
Body called, parms="some parms ", body follows:
That was the body
End tag called
after the tag
* Unmatched tag (should give ONE error at end-of file):