mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2024-11-07 16:43:17 +00:00
Fix regex for mainlink.
This commit is contained in:
parent
98e01c9769
commit
b0cb23bd92
@ -57,7 +57,7 @@ function parseLicense(md) {
|
|||||||
|
|
||||||
//Test '- [Name](http://homepage/)'
|
//Test '- [Name](http://homepage/)'
|
||||||
function testMainLink(text) {
|
function testMainLink(text) {
|
||||||
let testA = /(^ {0,2}- \[.*?\]\(.*\))(?=.?-? ?\w)/;
|
let testA = /(^ {0,2}- \[.*?\]\([^)]*\.[^)]*?\))(?=\ ?\-?\ ?\w)/ // /(^ {0,2}- \[.*?\]\(.*\))(?=.?-? ?\w)/;
|
||||||
const testA1 = /(- \W?\w*\W{0,2}.*?\)?)( .*$)/;
|
const testA1 = /(- \W?\w*\W{0,2}.*?\)?)( .*$)/;
|
||||||
if (!testA.test(text)) {
|
if (!testA.test(text)) {
|
||||||
let a1 = testA1.exec(text)[2];
|
let a1 = testA1.exec(text)[2];
|
||||||
|
Loading…
Reference in New Issue
Block a user