
: Re: How can I convert an HTML site into an ebook? I'd like to create a .mobi file from a website like the Python Tutorial, to read on my Kindle. Is it possible to do it on Ubuntu?
0 Reactions
I prefer Calibre solution. Debian Calibre package come with ebook-convert utility.
Grab HTML files from site by:
$ wget -r -np -nc -k -c .../.../..
Locate your main HTML file (usually book.html or index.html) and convert to MOBI:
$ cd dir-with-index
$ ebook-convert index.html book.mobi
$ ebook-convert index.html book.fb2
$ ebook-convert index.html book.epub
Free books android app tbrJar TBR JAR Read Free books online gutenberg
More posts by @Julie

: Landscape orientation in ereaders: css for both 1 and 2 page layout? I'm trying to write css media queries for landscape and portrait orientations. With widths of 1024 pix and wider, you think
0 Reactions