瀏覽代碼

prevent error when `.` is in the name

Nathan Rew 5 年之前
父節點
當前提交
f4370d335f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/test.js

+ 1 - 1
tests/test.js

@@ -83,7 +83,7 @@ function testDescription(text) {
 function testSrcDemCli(text) { 
   let testC = text.search(/\(\[|\)\,|\)\)/);
   let testD = /(?<=\w. )(\(\[(Demo|Source Code|Clients)\]\([^)\]]*\)(, \[(Source Code|Clients)\]\([^)\]]*\))?(, \[(Source Code|Clients)\]\([^)\]]*\))*\))(?= \`?)/;
-  const testD1 = /(^- \W[a-zA-Z0-9-_ ]*\W{0,2}http[^\[]*)(?<= )/;
+  const testD1 = /(^- \W[a-zA-Z0-9-_ .]*\W{0,2}http[^\[]*)(?<= )/;
   const testD2 = /(\`.*\` \`.*\`$)/;
   if ((testC > -1) && (!testD.test(text))) {
     let d1 = testD1.exec(text)[1];