Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imfly/gitbook-summary
A command line tool to generate a summary.md for Gitbook
https://github.com/imfly/gitbook-summary
bitcoin gitbook gitbook-plugin summary
Last synced: 3 days ago
JSON representation
A command line tool to generate a summary.md for Gitbook
- Host: GitHub
- URL: https://github.com/imfly/gitbook-summary
- Owner: imfly
- Created: 2015-10-28T07:07:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T05:17:24.000Z (about 2 years ago)
- Last Synced: 2025-01-27T15:45:32.393Z (10 days ago)
- Topics: bitcoin, gitbook, gitbook-plugin, summary
- Language: JavaScript
- Homepage:
- Size: 8.64 MB
- Stars: 176
- Watchers: 3
- Forks: 41
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gitbook Summary
[![npm version](https://badge.fury.io/js/gitbook-summary.svg)](https://badge.fury.io/js/gitbook-summary)
[![Build Status](https://travis-ci.org/imfly/gitbook-summary.png?branch=master)](https://travis-ci.org/imfly/gitbook-summary)
[![Dependencies Status](https://david-dm.org/imfly/gitbook-summary.png)](https://david-dm.org/imfly/gitbook-summary)
[![Coverage Status](https://coveralls.io/repos/imfly/gitbook-summary/badge.png)](https://coveralls.io/r/imfly/gitbook-summary)A command line tool to generate a `SUMMARY.MD` from a folder。[Demo](http://imfly.github.io/how-to-create-self-publishing-platform) [中文文档](http://imfly.github.io/how-to-create-self-publishing-platform/3-%E5%A6%82%E4%BD%95%E6%89%93%E9%80%A0%E8%87%AA%E5%B7%B1%E7%9A%84%E5%B9%B3%E5%8F%B0%EF%BC%9F/2-Summary%E7%9A%84%E4%BD%BF%E7%94%A8.html)
## EBooks
* 《Nodejs区块链开发2》: https://github.com/imfly/blockchain-on-nodejs
* 《Nodejs区块链开发》: https://github.com/imfly/bitcoin-on-nodejs
* 《用Gitbook和Github轻松搭建自出版平台》: https://github.com/imfly/how-to-create-self-publishing-platform
* 《sails.js 官方文档 多语言电子书》:https://github.com/imfly/sailsjs-docs-gitbookMore Gitbooks : https://www.gitbook.com/@imfly
## Features
- Generate `SUMMARY.md` by using a CLI with some options
- Setting with `book.json`
- Link `README.md` to the parent directory
- Only get '.md' files
- Order by alphabet or numbers
- ...## CoC (Convention over Configuration)
Source directory:
```
sources
├── 1-FirstChapter // The first chapter,format: {orderNumber or alphabet}-{chapterName}.md
├────── 1-FirstDocument.md
├────── 5-SecondDocument.md // concentrating solely on the order, not the numbers.
├── 3-SecondChapter // Focus only on the order, not the numbers.
├────── 1-FirstDocumentOfSecondChapter.md
├────── 2-SecondDocumentOfSecondChapter.md
├── 7-ThirdChapter
├── FourthChapter // May have no order
├── README.md // In addition to readme.md, not to put other markdown documents
└── book.json // Set up the book
```## Install
```
npm install -g gitbook-summary
```## Using
1> Generate a `SUMMARY.md` Simply
```
$ cd /path/to/your/book/
$ book sm
```or, For example:
```
$ book sm -r ../sailsjs-docs-gitbook/en -i 0home -u 'myApp' -c 'concepts, reference, userguides' -n "Sails.js 官方文档(中英合辑)"
```To see the command line options:
```
$ book sm --helpUsage: summary|sm [options]
Generate a `SUMMARY.md` from a folder
Options:
-h, --help output usage information
-r, --root [string] root folder, default is `.`
-t, --title [string] book title, default is `Your Book Title`.
-c, --catalog [list] catalog folders included book files, default is `all`.
-i, --ignores [list] ignore folders that be excluded, default is `[]`.
-u, --unchanged [list] unchanged catalog like `request.js`, default is `[]`.
-o, --outputfile [string] output file, defaut is `./SUMMARY.md`
-s, --sortedBy [string] sorted by sortedBy, for example: `num-`, defaut is sorted by characters
-d, --disableTitleFormatting don't convert filename/folder name to start case (for example: `JavaScript` to `Java Script`), default is `false````
**Notes**:
* The article title is taken from `title` property in the articles front-matter. If this property is not available, the articles filename will be used as title for the summary.
* The option `-s` or `--sortedBy` can not be given `-` as argument, because commander.js will parse it an option. But you can set it in `book.json` as follows.
* set up the sortedBy and if there are any summaries missing the order, look at the example below and follow,
for example, you have summaries like this `01-elementry-school, 02-middle-school, 03-university, ...`
you realized high school was missing, then You can make correct order in the following way
eg. `01-elementry-school, 02-middle-school, 02a-high-school, 03-university, ...`
not `01-elementry-school, 02-middle-school, 03-high-school, 04-university, ...`2> Create a `book.json` in the book`s root folder
for example:
```
// test/books/config-json/book.json
{
"title": "json-config-name",
"outputfile": "test.md",
"catalog": "all", // or [chapter1,chapter2, ...]
"ignores": [], //Default: '.*', '_book'...
"unchanged": [], // for example: ['myApp'] -> `myApp` not `My App`
"sortedBy": "-",
"disableTitleFormatting": true // default: false
}
```then, you can do:
```
$ book sm
```You will get a `test.md` file:
![test.md.jpg](doc/img/test.md.jpg)
3> Get a markdown artical from a html file or a remote url
```
$ book md -l "http://book.btcnodejs.com/index.html" -s "div.className"
```You will get the 'index.html' and 'index.md'.
4> Get convert between zh and zh-tw, zh-hk, or zh-sg
```
$ book cv -f ./test/language/test.md -l zh-tw -t "./test/language/test2.md"
```## Development
```
npm install
npm link
```## Test
```
npm test
```## Todo
- Convert articals between Simplified and Traditional Chinese.
- Generate eBooks(html, pdf, etc) by extending `gitbook`;## Contribute
We love pull requests! You can `fork it` and commit a `pr`
## License
The MIT License