Hi zelda, I have a bit of knowledge about formats, and as far as I know, epub is basically zipped html with specified specifications to contain (I've skimmed throught specs before). I want to make format that is distributed like the html part only, with e-book specific tags (also some nice modularity) and user, when f.e. importing to calibre or sigil, will just choose (or will be automatically chosen) style file, which will affect things like fonts, borders, image placements, math formulas rendering etc.
So user will just download file that contains:
<book>
<chapter name="Blaaa">
<h1>blabla</h1>
<text>
blabla
<image source=loc, placement=semiexact here> </img>
blabla
</text>
</chapter>
<toc style=h1></toc>
</book>
|