├── .gitignore ├── Brewfile ├── Brewfile.lock.json ├── LICENSE ├── README.md ├── books ├── 300-years-hence │ ├── 300-years-hence.epub │ ├── 300-years-hence.html │ ├── README.md │ ├── book.md │ └── cover.png ├── arqtiq │ ├── README.md │ ├── arqtiq.epub │ ├── arqtiq.html │ ├── book.md │ └── cover.png ├── mizora-a-prophecy │ ├── README.md │ ├── book.md │ ├── cover.png │ ├── mizora-a-prophecy.epub │ └── mizora-a-prophecy.html ├── moving-the-mountain │ ├── README.md │ ├── book.md │ ├── cover.png │ ├── moving-the-mountain.epub │ └── moving-the-mountain.html ├── republic-of-the-future │ ├── README.md │ ├── book.md │ ├── cover.png │ ├── republic-of-the-future.epub │ └── republic-of-the-future.html └── unveiling-a-parallel │ ├── 42816-h.htm │ ├── README.md │ ├── book.md │ ├── cover.png │ ├── unveiling-a-parallel.epub │ └── unveiling-a-parallel.html ├── shared ├── epub-template.html ├── epub.css ├── fonts │ └── lmromandunh10-regular.otf ├── html-template.html ├── metadata-template.md ├── readme-template.md └── web.css └── validate.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/.gitignore -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/README.md -------------------------------------------------------------------------------- /books/300-years-hence/300-years-hence.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/300-years-hence/300-years-hence.epub -------------------------------------------------------------------------------- /books/300-years-hence/300-years-hence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/300-years-hence/300-years-hence.html -------------------------------------------------------------------------------- /books/300-years-hence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/300-years-hence/README.md -------------------------------------------------------------------------------- /books/300-years-hence/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/300-years-hence/book.md -------------------------------------------------------------------------------- /books/300-years-hence/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/300-years-hence/cover.png -------------------------------------------------------------------------------- /books/arqtiq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/arqtiq/README.md -------------------------------------------------------------------------------- /books/arqtiq/arqtiq.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/arqtiq/arqtiq.epub -------------------------------------------------------------------------------- /books/arqtiq/arqtiq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/arqtiq/arqtiq.html -------------------------------------------------------------------------------- /books/arqtiq/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/arqtiq/book.md -------------------------------------------------------------------------------- /books/arqtiq/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/arqtiq/cover.png -------------------------------------------------------------------------------- /books/mizora-a-prophecy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/mizora-a-prophecy/README.md -------------------------------------------------------------------------------- /books/mizora-a-prophecy/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/mizora-a-prophecy/book.md -------------------------------------------------------------------------------- /books/mizora-a-prophecy/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/mizora-a-prophecy/cover.png -------------------------------------------------------------------------------- /books/mizora-a-prophecy/mizora-a-prophecy.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/mizora-a-prophecy/mizora-a-prophecy.epub -------------------------------------------------------------------------------- /books/mizora-a-prophecy/mizora-a-prophecy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/mizora-a-prophecy/mizora-a-prophecy.html -------------------------------------------------------------------------------- /books/moving-the-mountain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/moving-the-mountain/README.md -------------------------------------------------------------------------------- /books/moving-the-mountain/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/moving-the-mountain/book.md -------------------------------------------------------------------------------- /books/moving-the-mountain/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/moving-the-mountain/cover.png -------------------------------------------------------------------------------- /books/moving-the-mountain/moving-the-mountain.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/moving-the-mountain/moving-the-mountain.epub -------------------------------------------------------------------------------- /books/moving-the-mountain/moving-the-mountain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/moving-the-mountain/moving-the-mountain.html -------------------------------------------------------------------------------- /books/republic-of-the-future/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/republic-of-the-future/README.md -------------------------------------------------------------------------------- /books/republic-of-the-future/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/republic-of-the-future/book.md -------------------------------------------------------------------------------- /books/republic-of-the-future/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/republic-of-the-future/cover.png -------------------------------------------------------------------------------- /books/republic-of-the-future/republic-of-the-future.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/republic-of-the-future/republic-of-the-future.epub -------------------------------------------------------------------------------- /books/republic-of-the-future/republic-of-the-future.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/republic-of-the-future/republic-of-the-future.html -------------------------------------------------------------------------------- /books/unveiling-a-parallel/42816-h.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/42816-h.htm -------------------------------------------------------------------------------- /books/unveiling-a-parallel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/README.md -------------------------------------------------------------------------------- /books/unveiling-a-parallel/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/book.md -------------------------------------------------------------------------------- /books/unveiling-a-parallel/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/cover.png -------------------------------------------------------------------------------- /books/unveiling-a-parallel/unveiling-a-parallel.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/unveiling-a-parallel.epub -------------------------------------------------------------------------------- /books/unveiling-a-parallel/unveiling-a-parallel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/books/unveiling-a-parallel/unveiling-a-parallel.html -------------------------------------------------------------------------------- /shared/epub-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/epub-template.html -------------------------------------------------------------------------------- /shared/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/epub.css -------------------------------------------------------------------------------- /shared/fonts/lmromandunh10-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/fonts/lmromandunh10-regular.otf -------------------------------------------------------------------------------- /shared/html-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/html-template.html -------------------------------------------------------------------------------- /shared/metadata-template.md: -------------------------------------------------------------------------------- 1 | * [$pagetitle$]($dir$/) by $author$ ($date$) 2 | -------------------------------------------------------------------------------- /shared/readme-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/readme-template.md -------------------------------------------------------------------------------- /shared/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/shared/web.css -------------------------------------------------------------------------------- /validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizadaly/utopia-novels/HEAD/validate.sh --------------------------------------------------------------------------------