1 Star 0 Fork 0

GitSharp/tips

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.doxie.render.toc.js 615 Bytes
一键复制 编辑 原始数据 按行查看 历史
surfer190 提交于 2016-06-02 13:14 . Remove absolute links
// from https://gist.github.com/mathewbyrne/1280286
slugify = function(text){
return text.toString().toLowerCase()
.replace(/\s+/g, '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
var render = function(data) {
var data = data.data;
var out = '* [' + data.title + '](#' + slugify(data.title) + ')\n';
return out;
};
module.exports = render;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitsharp/tips.git
git@gitee.com:gitsharp/tips.git
gitsharp
tips
tips
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385