Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358651b commit cece2cbCopy full SHA for cece2cb
1 file changed
lib/core/common.py
@@ -2483,8 +2483,10 @@ def extractTextTagContent(page):
2483
"""
2484
2485
page = page or ""
2486
+
2487
if REFLECTED_VALUE_MARKER in page:
2488
page = re.sub(r"(?si)[^\s>]*%s[^\s<]*" % REFLECTED_VALUE_MARKER, "", page)
2489
2490
return filter(None, (_.group('result').strip() for _ in re.finditer(TEXT_TAG_REGEX, page)))
2491
2492
def trimAlphaNum(value):
0 commit comments