Next in thread →
Next in month →
Re: [xml-dev] XML representation of tab-delimited text files?
<Row>
<A>foo</A>
<B/>
<C>bar</C>
</Row>
assumes you use a custom schema for each set of headings, a more
generic scheme would be
<Table>
<Head>
<Cell>A</Cell>
<Cell>B</Cell>
<Cell>C</Cell>
</Head>
<Row>
<Cell>foo</Cell>
<Cell/>
<Cell>bar</Cell>
</Row>
</Table>
Next in thread →
Next in month →