2 Star 0 Fork 0

mirrors_bpmn-io/docdown

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
John-David Dalton 提交于 2015-08-04 08:11 . Bump to v0.2.1.
/*!
* docdown v0.2.1
* Copyright 2011-2015 John-David Dalton <http://allyoucanleet.com/>
* Available under MIT license <http://mths.be/mit>
*/
'use strict';
var _ = require('lodash'),
path = require('path'),
fs = require('fs'),
generator = require('./lib/generator.js');
/**
* Generates Markdown documentation based on JSDoc comments.
*
* @name docdown
* @param options The options to use to generate documentation.
* @returns {string} The generated Markdown code.
*/
function docdown(options) {
options = _.defaults(options || {}, {
'hash': 'default',
'lang': 'js',
'title': path.basename(options.path) + ' API documentation',
'toc': 'properties'
});
if (!options.path || !options.url) {
throw new Error('Path and URL must be specified');
}
return generator(fs.readFileSync(options.path, 'utf8'), options);
}
module.exports = docdown;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_bpmn-io/docdown.git
git@gitee.com:mirrors_bpmn-io/docdown.git
mirrors_bpmn-io
docdown
docdown
master

搜索帮助