├── .eleventy.js ├── .gitattributes ├── .gitignore ├── .stylelintrc ├── LICENSE ├── README.md ├── extra ├── container.xml └── mimetype ├── gulpfile.js ├── lib └── epubcheck-4.2.4 │ ├── CHANGELOG.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── THIRD-PARTY.txt │ ├── epubcheck.jar │ ├── lib │ ├── Saxon-HE-9.8.0-8.jar │ ├── animal-sniffer-annotations-1.14.jar │ ├── checker-compat-qual-2.0.0.jar │ ├── common-image-3.4.1.jar │ ├── common-io-3.4.1.jar │ ├── common-lang-3.4.1.jar │ ├── commons-compress-1.20.jar │ ├── error_prone_annotations-2.1.3.jar │ ├── guava-24.1.1-android.jar │ ├── imageio-core-3.4.1.jar │ ├── imageio-jpeg-3.4.1.jar │ ├── imageio-metadata-3.4.1.jar │ ├── isorelax-20030108.jar │ ├── j2objc-annotations-1.1.jar │ ├── jackson-core-asl-1.9.12.jar │ ├── jackson-mapper-asl-1.9.12.jar │ ├── jing-20181222.jar │ ├── jsr305-1.3.9.jar │ ├── sac-1.3.jar │ └── xercesImpl-2.9.1.jar │ └── licenses │ ├── Apache-2.0.txt │ ├── BSD-3-Clause.txt │ ├── MPL-1.0.txt │ └── W3C.txt ├── package.json ├── postbuild.js ├── prebuild.js ├── rename.js ├── src ├── _data │ ├── metadata.json │ └── pub.json ├── _includes │ ├── base.njk │ ├── package.njk │ ├── page.njk │ └── toc.njk ├── cover.md ├── index.md ├── pages │ ├── chapter1.md │ ├── end.md │ ├── intro.md │ └── pages.json ├── resources │ ├── css │ │ ├── page.css │ │ └── style.css │ ├── fonts │ │ ├── TruenoBd.otf │ │ ├── TruenoLt.otf │ │ └── TruenoLtIt.otf │ └── images │ │ ├── cat.jpeg │ │ └── under-construction.jpg └── toc.md ├── utils.js └── watch.json /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-recommended" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/README.md -------------------------------------------------------------------------------- /extra/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/extra/container.xml -------------------------------------------------------------------------------- /extra/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/CHANGELOG.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/LICENSE.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/README.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/THIRD-PARTY.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/epubcheck.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/epubcheck.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/Saxon-HE-9.8.0-8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/Saxon-HE-9.8.0-8.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/animal-sniffer-annotations-1.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/animal-sniffer-annotations-1.14.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/checker-compat-qual-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/checker-compat-qual-2.0.0.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/common-image-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/common-image-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/common-io-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/common-io-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/common-lang-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/common-lang-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/commons-compress-1.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/commons-compress-1.20.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/error_prone_annotations-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/error_prone_annotations-2.1.3.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/guava-24.1.1-android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/guava-24.1.1-android.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/imageio-core-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/imageio-core-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/imageio-jpeg-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/imageio-jpeg-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/imageio-metadata-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/imageio-metadata-3.4.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/isorelax-20030108.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/isorelax-20030108.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/j2objc-annotations-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/j2objc-annotations-1.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/jackson-core-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/jackson-core-asl-1.9.12.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/jackson-mapper-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/jackson-mapper-asl-1.9.12.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/jing-20181222.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/jing-20181222.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/jsr305-1.3.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/jsr305-1.3.9.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/sac-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/sac-1.3.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/lib/xercesImpl-2.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/lib/xercesImpl-2.9.1.jar -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/licenses/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/licenses/Apache-2.0.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/licenses/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/licenses/BSD-3-Clause.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/licenses/MPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/licenses/MPL-1.0.txt -------------------------------------------------------------------------------- /lib/epubcheck-4.2.4/licenses/W3C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/lib/epubcheck-4.2.4/licenses/W3C.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/package.json -------------------------------------------------------------------------------- /postbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/postbuild.js -------------------------------------------------------------------------------- /prebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/prebuild.js -------------------------------------------------------------------------------- /rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/rename.js -------------------------------------------------------------------------------- /src/_data/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_data/metadata.json -------------------------------------------------------------------------------- /src/_data/pub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_data/pub.json -------------------------------------------------------------------------------- /src/_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_includes/base.njk -------------------------------------------------------------------------------- /src/_includes/package.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_includes/package.njk -------------------------------------------------------------------------------- /src/_includes/page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_includes/page.njk -------------------------------------------------------------------------------- /src/_includes/toc.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/_includes/toc.njk -------------------------------------------------------------------------------- /src/cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/cover.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: package.njk 3 | --- 4 | -------------------------------------------------------------------------------- /src/pages/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/pages/chapter1.md -------------------------------------------------------------------------------- /src/pages/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/pages/end.md -------------------------------------------------------------------------------- /src/pages/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/pages/intro.md -------------------------------------------------------------------------------- /src/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/pages/pages.json -------------------------------------------------------------------------------- /src/resources/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/css/page.css -------------------------------------------------------------------------------- /src/resources/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/css/style.css -------------------------------------------------------------------------------- /src/resources/fonts/TruenoBd.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/fonts/TruenoBd.otf -------------------------------------------------------------------------------- /src/resources/fonts/TruenoLt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/fonts/TruenoLt.otf -------------------------------------------------------------------------------- /src/resources/fonts/TruenoLtIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/fonts/TruenoLtIt.otf -------------------------------------------------------------------------------- /src/resources/images/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/images/cat.jpeg -------------------------------------------------------------------------------- /src/resources/images/under-construction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/resources/images/under-construction.jpg -------------------------------------------------------------------------------- /src/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/src/toc.md -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/utils.js -------------------------------------------------------------------------------- /watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marisademeglio/eleventypub/HEAD/watch.json --------------------------------------------------------------------------------