├── .bookignore ├── .gitignore ├── 1-干嘛要写书? ├── 1-写书的必要性 │ └── readme.md └── 2-写书的好处 │ └── readme.md ├── 2-什么是自出版平台? └── readme.md ├── 3-如何打造自己的平台? ├── 1-Summary的安装.md ├── 2-Summary的使用.md ├── 3-电子书的生成.md ├── 4-电子书的发布.md └── readme.md ├── 4-最佳实践 └── 妙手偶得无须刻意.md ├── 5-附录 ├── 0-参考信息.md └── 1-关于作者.md ├── README.md ├── SUMMARY.md ├── book.json ├── gulpfile.js └── package.json /.bookignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/.bookignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /1-干嘛要写书?/1-写书的必要性/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/1-干嘛要写书?/1-写书的必要性/readme.md -------------------------------------------------------------------------------- /1-干嘛要写书?/2-写书的好处/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/1-干嘛要写书?/2-写书的好处/readme.md -------------------------------------------------------------------------------- /2-什么是自出版平台?/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/2-什么是自出版平台?/readme.md -------------------------------------------------------------------------------- /3-如何打造自己的平台?/1-Summary的安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/3-如何打造自己的平台?/1-Summary的安装.md -------------------------------------------------------------------------------- /3-如何打造自己的平台?/2-Summary的使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/3-如何打造自己的平台?/2-Summary的使用.md -------------------------------------------------------------------------------- /3-如何打造自己的平台?/3-电子书的生成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/3-如何打造自己的平台?/3-电子书的生成.md -------------------------------------------------------------------------------- /3-如何打造自己的平台?/4-电子书的发布.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/3-如何打造自己的平台?/4-电子书的发布.md -------------------------------------------------------------------------------- /3-如何打造自己的平台?/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/3-如何打造自己的平台?/readme.md -------------------------------------------------------------------------------- /4-最佳实践/妙手偶得无须刻意.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/4-最佳实践/妙手偶得无须刻意.md -------------------------------------------------------------------------------- /5-附录/0-参考信息.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/5-附录/0-参考信息.md -------------------------------------------------------------------------------- /5-附录/1-关于作者.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/5-附录/1-关于作者.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/book.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imfly/how-to-create-self-publishing-platform/HEAD/package.json --------------------------------------------------------------------------------