diff --git a/README.md b/README.md index 867f2fc..25cb5d3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -# any-rule -正则大全 -https://any86.github.io/any-rule/ +# 正则大全 +:whale: 图形界面: https://any86.github.io/any-rule/ ## 银行卡号(16或19位) ```javascript diff --git a/scripts/md.js b/scripts/md.js index 089ce11..36b17eb 100644 --- a/scripts/md.js +++ b/scripts/md.js @@ -1,10 +1,8 @@ const fs = require('fs'); const chalk = require('chalk'); const json = require('../src/RULES.js'); -let content = `# any-rule -正则大全 -https://any86.github.io/any-rule/ -`; +let content = `# 正则大全 +图形界面: https://any86.github.io/any-rule/\r\n`; json.forEach(({title, rule})=>{ content+= `\r\n## ${title}\r\n`; content+= `\`\`\`javascript\r\n`;