What's the best way to go from a table or excel spreadsheet to div elements? I have table that has a couple hundred rows that I want to represent as div elements in a HTML file. The finished product will look something like this:
<div id="COL1" style="display:none;">COL2 blah blah COL3</div>
The text between COL2 and COL3 will all be the same. I can just as easily insert it into my table before converting. Any thoughts?