浏览代码

Trim Markdown Go! out of Link string

pull/362/head
Dave Machado 7 年前
父节点
当前提交
22591456e8
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      build/md2json.js

+ 5
- 1
build/md2json.js 查看文件

@@ -1,7 +1,11 @@
fs = require('fs')

function md_trim(str) {
return str.replace(/(^\s+)|(\s+$)/g, "");
str = str.replace(/(^\s+)|(\s+$)/g, "");
if (str.lastIndexOf("[Go!]", 0) === 0) {
str = str.replace("[Go!]", "").slice(1, -1);
}
return str;
}

function handle(filename, anchor) {


正在加载...
取消
保存