#!/bin/bash
# could be stored on ~/bin/generateEpubTemplate on the reMarkable
mkdir -p META-INF OEBPS
echo '
' > ./META-INF/container.xml
echo '
Title of the document
Content of the cover page
' > ./OEBPS/cover.xhtml
echo '
The title
' > ./OEBPS/content.opf
echo '
Title of the document
Content of the page
' > ./OEBPS/content.xhtml
echo '
Title of the document
Content of the TOC page
' > ./OEBPS/toc.xhtml
echo application/epub+zip > ./mimetype