Removed unnecessary code from search plugin
This commit is contained in:
parent
81e7b8c7fc
commit
7484b19e9a
|
|
@ -401,8 +401,10 @@ class Parser(HTMLParser):
|
||||||
# Render opening tag if kept
|
# Render opening tag if kept
|
||||||
if not self.skip.intersection(self.context):
|
if not self.skip.intersection(self.context):
|
||||||
if tag in self.keep:
|
if tag in self.keep:
|
||||||
|
|
||||||
|
# Check whether we're inside the section title
|
||||||
data = self.section.text
|
data = self.section.text
|
||||||
if self.section.el in reversed(self.context):
|
if self.section.el in self.context:
|
||||||
data = self.section.title
|
data = self.section.title
|
||||||
|
|
||||||
# Append to section title or text
|
# Append to section title or text
|
||||||
|
|
|
||||||
|
|
@ -401,8 +401,10 @@ class Parser(HTMLParser):
|
||||||
# Render opening tag if kept
|
# Render opening tag if kept
|
||||||
if not self.skip.intersection(self.context):
|
if not self.skip.intersection(self.context):
|
||||||
if tag in self.keep:
|
if tag in self.keep:
|
||||||
|
|
||||||
|
# Check whether we're inside the section title
|
||||||
data = self.section.text
|
data = self.section.text
|
||||||
if self.section.el in reversed(self.context):
|
if self.section.el in self.context:
|
||||||
data = self.section.title
|
data = self.section.title
|
||||||
|
|
||||||
# Append to section title or text
|
# Append to section title or text
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue