Parsing Errors

The TaoML > XML < TaoML translator should be able to detect a number of errors during the parsin process.  These include:
 
    1) Opened tags that are not closed.
        eg,
        <ts1>    <-- Error No Closing </ts1>
        <ts2></ts2>

    2) Two parameters in the tag have the same name.
        eg,
        <ts1 url=xxx name="chap 4 searching" url=yyy></ts1>
 
    3) A parameter has no value fed to it.
        eg,
        <ts1 url= name="chap 4 searching"> </ts1>