Hi all - i am interested in figuring out how to convert epub to HTML (or DOCX) while adding an additional empty column (or table cell) to the output.
In the case of converting to HTML, putting the entire output in a DIV, with a second adjacent (empty) DIV would be the simplest, but creating divs for each paragraph (with side-by-side empty DIV) would be best.
Likewise, converting to DOCX, creating multiple columns, (and rows of columns) with column breaks at paragraphs, with an empty column to the right. I have no idea what 'code' WORD might use to designate columns.
Code:
<Table>
<tr><td>epub text goes here</td><td> </td></tr>
<tr><td>epub text goes here</td><td> </td></tr>
</Table>
or
<DIV id="main">
<DIV id="lt1">epub text goes here</DIV><DIV id="rt1"> </DIV>
<DIV id="lt2">epub text goes here</DIV><DIV id="rt2"> </DIV>
</DIV>
thoughts ?
many thanks