├── .gitignore ├── README.md ├── bin ├── clean ├── epubc ├── htmlc ├── pdfc └── prepare.sh ├── src ├── chapter1 │ ├── images │ │ └── ipfs.jpeg │ └── section.md ├── chapter2 │ └── section.md ├── cover.jpg ├── index.md ├── metadata.xml ├── title.txt └── 鸣谢.md └── templates ├── fqtec.png ├── ivy.css └── zh.latex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/README.md -------------------------------------------------------------------------------- /bin/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/bin/clean -------------------------------------------------------------------------------- /bin/epubc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/bin/epubc -------------------------------------------------------------------------------- /bin/htmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/bin/htmlc -------------------------------------------------------------------------------- /bin/pdfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/bin/pdfc -------------------------------------------------------------------------------- /bin/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/bin/prepare.sh -------------------------------------------------------------------------------- /src/chapter1/images/ipfs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/chapter1/images/ipfs.jpeg -------------------------------------------------------------------------------- /src/chapter1/section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/chapter1/section.md -------------------------------------------------------------------------------- /src/chapter2/section.md: -------------------------------------------------------------------------------- 1 | 2 | # chapter2 3 | 内容 4 | -------------------------------------------------------------------------------- /src/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/cover.jpg -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/index.md -------------------------------------------------------------------------------- /src/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/metadata.xml -------------------------------------------------------------------------------- /src/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/src/title.txt -------------------------------------------------------------------------------- /src/鸣谢.md: -------------------------------------------------------------------------------- 1 | 2 | # 鸣谢 3 | 4 | -------------------------------------------------------------------------------- /templates/fqtec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/templates/fqtec.png -------------------------------------------------------------------------------- /templates/ivy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/templates/ivy.css -------------------------------------------------------------------------------- /templates/zh.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keevol/pandoc_md_book_starter/HEAD/templates/zh.latex --------------------------------------------------------------------------------