Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccjoe/minami_ch
jsdoc3 template minami_ch 文档中文优化
https://github.com/ccjoe/minami_ch
Last synced: 18 days ago
JSON representation
jsdoc3 template minami_ch 文档中文优化
- Host: GitHub
- URL: https://github.com/ccjoe/minami_ch
- Owner: ccjoe
- License: other
- Created: 2015-12-14T03:53:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-14T11:05:38.000Z (about 9 years ago)
- Last Synced: 2024-11-20T18:53:50.743Z (3 months ago)
- Language: JavaScript
- Size: 528 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minami
[将根据需求渐渐完善中哦哦...也许也没什么改的...]A clean, responsive documentation template theme for JSDoc 3.
![Minami Screenshot](http://puu.sh/gOyNe/66c3adcb97.png)
## Uses
- [the Taffy Database library](http://taffydb.com/)
- [Underscore Template library](http://documentcloud.github.com/underscore/#template)
- [Montserrat](http://www.google.com/fonts/specimen/Monsterrat) & Helvetica Neue## Install
```bash
$ npm install --save-dev minami
```## Usage
Clone repository to your designated `jsdoc` template directory, then:
```bash
$ jsdoc entry-file.js -t path/to/minami
```### Node.js Dependency
In your projects `package.json` file add a generate script:
```json
"script": {
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
}
```In your `.jsdoc.json` file, add a template option.
```json
"opts": {
"template": "node_modules/minami"
}
```### Example JSDoc Config
```json
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["lib", "package.json", "README.md"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true
},
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"private": true,
"recurse": true,
"template": "./node_modules/minami"
}
}
```## License
Licensed under the Apache2 license.