microsimulation / ijm-xml

XML files for the International Journal of Microsimulation
MIT License
0 stars 0 forks source link

Arrays in ijm-00105.xml #155

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

There are two array elements in ijm-00105.xml.

For example:

<array>
    <tbody>
        <tr>
            <th><p><monospace>ID</monospace></p></th>
            <th><p><monospace>birthDate</monospace></p></th>
            <th><p><monospace>initState</monospace></p></th>
            <th><p><monospace>From</monospace></p></th>
            <th><p><monospace>To</monospace></p></th>
            <th><p><monospace>transitionTime</monospace></p></th>
            <th><p><monospace>transitionAge</monospace></p></th>
        </tr>
         ...
    </tbody>
</array>

Please instead capture these as tables with no headers, labels, titles or captions, for example:

<table-wrap>
    <table>
        <tbody>
            <tr>
                <th><p><monospace>ID</monospace></p></th>
                <th><p><monospace>birthDate</monospace></p></th>
                <th><p><monospace>initState</monospace></p></th>
                <th><p><monospace>From</monospace></p></th>
                <th><p><monospace>To</monospace></p></th>
                <th><p><monospace>transitionTime</monospace></p></th>
                <th><p><monospace>transitionAge</monospace></p></th>
            </tr> 
            ... 
        </tbody>
    </table>
</table-wrap>