WebSheet

Expression of datasets using Microformat based tables or sheets

Here is a basic sample and it's listing below

Date Title Description Credit Debit
2005-12-21 330 2005015 0.00 1060.80
2005-12-21 331 2005016 0.00 1385.51
2005-12-21 332 2005017 0.00 2316.84
2005-12-21 333 2005018 0.00 5985.23

Segment listing

            1    <table class="websheet">
            2        <tr>
            3            <th>Date</th>
            4            <th>Title</th>
            5            <th>Description</th>
            6            <th>Credit</th>
            7            <th>Debit</th>
            8        </tr>
            9        <tr>
            10           <td class="datetime">2005-12-21</td>
            11           <td><a href="./330" class="integer">330</a></td>
            12           <td>2005015</td>
            13           <td class="double">0.00</td>
            14           <td class="double">1060.80</td>
            15       </tr>
            16       <tr>
            17           <td class="datetime">2005-12-21</td>
            18           <td><a href="./331" class="integer">331</a></td>
            19           <td>2005016</td>
            20           <td class="double">0.00</td>
            21           <td class="double">1385.51</td>
            22       </tr>
            23       <tr>
            24           <td class="datetime">2005-12-21</td>
            25           <td><a href="./332" class="integer">332</a></td>
            26           <td>2005017</td>
            27           <td class="double">0.00</td>
            28           <td class="double">2316.84</td>
            29       </tr>
            30       <tr>
            31           <td class="datetime">2005-12-21</td>
            32           <td><a href="./333" class="integer">333</a></td>
            33           <td>2005018</td>
            34           <td class="double">0.00</td>
            35           <td class="double">5985.23</td>
            36       </tr>
            37   </table>
        
External References