├── .gitignore ├── .ruby-version ├── Gemfile ├── LICENSE ├── README.md ├── convert.rb ├── css-sorter.rb ├── demo.gif ├── generate.rb ├── serve.rb └── source ├── _epub-template ├── META-INF │ ├── com.apple.ibooks.display-options.xml │ └── container.xml ├── content-template.xhtml ├── mimetype ├── nav-template.xhtml ├── template.ncx └── template.opf ├── _web-template └── web-template.html ├── annabel-scheme-new-golden-gate.md ├── book.yaml ├── css ├── epub.css └── web.css ├── font ├── Vollkorn-Black.woff2 ├── Vollkorn-BlackItalic.woff2 ├── Vollkorn-Bold.woff2 ├── Vollkorn-BoldItalic.woff2 ├── Vollkorn-Italic.woff2 ├── Vollkorn-Regular.woff2 ├── Vollkorn-Semibold.woff2 └── Vollkorn-SemiboldItalic.woff2 └── img ├── genthe-fire.png └── scheme-cover-web.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/README.md -------------------------------------------------------------------------------- /convert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/convert.rb -------------------------------------------------------------------------------- /css-sorter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/css-sorter.rb -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/demo.gif -------------------------------------------------------------------------------- /generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/generate.rb -------------------------------------------------------------------------------- /serve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/serve.rb -------------------------------------------------------------------------------- /source/_epub-template/META-INF/com.apple.ibooks.display-options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/META-INF/com.apple.ibooks.display-options.xml -------------------------------------------------------------------------------- /source/_epub-template/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/META-INF/container.xml -------------------------------------------------------------------------------- /source/_epub-template/content-template.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/content-template.xhtml -------------------------------------------------------------------------------- /source/_epub-template/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /source/_epub-template/nav-template.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/nav-template.xhtml -------------------------------------------------------------------------------- /source/_epub-template/template.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/template.ncx -------------------------------------------------------------------------------- /source/_epub-template/template.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_epub-template/template.opf -------------------------------------------------------------------------------- /source/_web-template/web-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/_web-template/web-template.html -------------------------------------------------------------------------------- /source/annabel-scheme-new-golden-gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/annabel-scheme-new-golden-gate.md -------------------------------------------------------------------------------- /source/book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/book.yaml -------------------------------------------------------------------------------- /source/css/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/css/epub.css -------------------------------------------------------------------------------- /source/css/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/css/web.css -------------------------------------------------------------------------------- /source/font/Vollkorn-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-Black.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-BlackItalic.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-Bold.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-BoldItalic.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-Italic.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-Regular.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-Semibold.woff2 -------------------------------------------------------------------------------- /source/font/Vollkorn-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/font/Vollkorn-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /source/img/genthe-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/img/genthe-fire.png -------------------------------------------------------------------------------- /source/img/scheme-cover-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsloan/perfect-edition/HEAD/source/img/scheme-cover-web.png --------------------------------------------------------------------------------