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 e33ea7c commit 60ca44eCopy full SHA for 60ca44e
1 file changed
lib/core/common.py
@@ -2161,7 +2161,8 @@ def extractTextTagContent(page):
2161
Returns list containing content from "textual" tags
2162
"""
2163
2164
- return [_.group('result') for _ in re.finditer(TEXT_TAG_REGEX, page or "")]
+ page = re.sub(r"(?si)%s[^<]*" % REFLECTED_VALUE_MARKER, "", page or "")
2165
+ return [_.group('result') for _ in re.finditer(TEXT_TAG_REGEX, page)]
2166
2167
def trimAlphaNum(value):
2168
0 commit comments