1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| { "tags": { "allowUnknownTags": true }, "source": { "include": ["src"], "exclude": ["src/core", "src/ui"], "includePattern": ".+\\.(js|es)$" }, "plugins": ["plugins/markdown"], "markdown": { tags: ["file"], // 增加额外需要解析的标签 "excludeTags": ["author"], // 排除不用解析的标签 "parser": "gfm", // gfm "hardwrap": true // 允许多行 }, "templates": { // 模板配置,包含了 DocStrap 的配置参数 "logoFile": "images/logo.png", // logo 文件路径 "cleverLinks": false, "monospaceLinks": false, "dateFormat": "ddd MMM Do YYYY", // 当需要打印日期时使用的格式 "outputSourceFiles": true, // 是否输出文件源码 "outputSourcePath": true, // 是否输出源码路径 "systemName": "Micheal's blog", // 系统名称 "footer": "Micheal", // 页脚内容 "copyright": "https://blog.michealwayne.cn", // 页脚版权信息 "navType": "vertical", // 导航栏对齐 vertical 或 inline "theme": "cosmo", "linenums": true, // 是否显示行号 "collapseSymbols": false, // 是否折叠太长的内容 "inverseNav": true, // 导航是否使用 bootstrap 的 inverse header "protocol": "html://", // 生成文档使用的阅读协议 "methodHeadingReturns": true // method 方法标题上是否包含返回类型 }, "opts": { "template": "templates/default", // 使用 JSDoc 默认模板 "template": "./node_modules/ink-docstrap/template", // 使用 docstrap 模板 "destination": "./docs/", // 输出目录。等同于 -d ./out/ "recurse": true, // 是否递归查找。 -r "debug": true, // 启用调试模式。--debug "readme": "README.md" // 要写到文档首页的 readme 文档。-R README.md } }
|
Author
My name is Micheal Wayne and this is my blog.
I am a front-end software engineer.
Contact: michealwayne@163.com