Re: How to parse epub content

2020-01-11 Thread Adam D. Ruppe via Digitalmars-d-learn
On Saturday, 11 January 2020 at 12:38:38 UTC, Adnan wrote: How would someone approach parsing epub files in D? Is there any libraries to parse XHTML? I've done it before with my dom.d easily enough. The epub itself is a zip file. You might simply unzip it ahead of time, or use std.zip to acce

Re: How to parse epub content

2020-01-11 Thread JN via Digitalmars-d-learn
On Saturday, 11 January 2020 at 12:38:38 UTC, Adnan wrote: How would someone approach parsing epub files in D? Is there any libraries to parse XHTML? XHTML is XML. There are libraries to parse XML, from std.xml in the standard library to libraries like dxml in the package repository.

How to parse epub content

2020-01-11 Thread Adnan via Digitalmars-d-learn
How would someone approach parsing epub files in D? Is there any libraries to parse XHTML?