remove class list length limit (#136)
parent
dda7a7b1fc
commit
825b067391
|
@ -133,7 +133,7 @@ export function findClassListsInHtmlRange(
|
|||
const result: DocumentClassList[] = []
|
||||
|
||||
matches.forEach((match) => {
|
||||
const subtext = text.substr(match.index + match[0].length - 1, 200)
|
||||
const subtext = text.substr(match.index + match[0].length - 1)
|
||||
|
||||
let lexer =
|
||||
match[0][0] === ':'
|
||||
|
|
Loading…
Reference in New Issue