1 Star 0 Fork 13

shiliang888/JsPlumb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build-support.js 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
//
// helper to create front matter from a JS object.
//
createFrontMatter : function(options) {
var f = "---\n";
for (var k in options)
f += (k + ": " + options[k] + "\n");
f += "---\n";
return f;
},
//
// helper to create a timestamp for inclusion in yaml front matter.
//
timestamp : function() {
var d = new Date();
return d.getFullYear() + "-" + d.getMonth() + "-" + d.getDate() + " 12:00:00";
},
processMarkdownFile : function(grunt, inputDir, filename, template, base, outputDir) {
/*var s = grunt.file.read(inputDir + "/" + filename),
o = this.createFrontMatter({
layout:template,
date:this.timestamp(),
base:base
});
grunt.file.write(outputDir + "/" + filename, o + s);*/
this.createMarkdownFile(grunt, inputDir, filename, {
layout:template,
date:this.timestamp(),
base:base
}, outputDir);
},
createMarkdownFile:function(grunt, inputDir, filename, options, outputDir) {
var s = grunt.file.read(inputDir + "/" + filename),
o = this.createFrontMatter(options);
grunt.file.write(outputDir + "/" + filename, o + s);
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/shiliang888/JsPlumb.git
git@gitee.com:shiliang888/JsPlumb.git
shiliang888
JsPlumb
JsPlumb
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385