links are now shown in the relation map as well

This commit is contained in:
azivner
2018-11-14 10:11:15 +01:00
parent 247275d391
commit fc9495bcdf
4 changed files with 43 additions and 5 deletions

View File

@@ -183,7 +183,7 @@ function findImageLinks(content, foundLinks) {
}
function findHyperLinks(content, foundLinks) {
const re = /href="#root[a-zA-Z0-9\/]*\/([a-zA-Z0-9]+)\//g;
const re = /href="#root[a-zA-Z0-9\/]*\/([a-zA-Z0-9]+)\/?"/g;
let match;
while (match = re.exec(content)) {