index -> text : highlight item in text with id #806

This commit is contained in:
2022-05-13 15:27:58 +02:00
parent 10c4abfa82
commit b958a09cfa
6 changed files with 28 additions and 24 deletions
+5 -3
View File
@@ -25,7 +25,7 @@ export default {
tei: String,
uuid: String,
textid: String,
extract: String,
extractid: String,
url: String
},
data: () => ({
@@ -155,8 +155,10 @@ export default {
}
},
parseExtract () {
console.log('Parse extract', this.extract)
let regexp = RegExp(this.extract, 'gim')
console.log('Parse extract', this.extractid)
// let regexp = RegExp(this.extract, 'gim')
let regexp = RegExp(`<span[^>]* id="${this.extractid}"[^>]*>[^<]*</span>`)
// let regexp = RegExp(`<(\w+)((?:\s+\w+(?:\s*=\s*(?:"[\s\S]*?"|'[\s\S]*?'|[^'">\s]+))?)+\s*|\s*)>([\s\S]*?)<\/\1>`)
let index = 0
function marking (str) {
index++