mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 20:22:07 +03:00
Ignore noscript tags when generating URL previews
This commit is contained in:
parent
1ad1ba9e6a
commit
5287e57c86
1 changed files with 8 additions and 1 deletions
|
@ -520,7 +520,14 @@ def _calc_og(tree, media_uri):
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
|
|
||||||
TAGS_TO_REMOVE = (
|
TAGS_TO_REMOVE = (
|
||||||
"header", "nav", "aside", "footer", "script", "style", etree.Comment
|
"header",
|
||||||
|
"nav",
|
||||||
|
"aside",
|
||||||
|
"footer",
|
||||||
|
"script",
|
||||||
|
"noscript",
|
||||||
|
"style",
|
||||||
|
etree.Comment
|
||||||
)
|
)
|
||||||
|
|
||||||
# Split all the text nodes into paragraphs (by splitting on new
|
# Split all the text nodes into paragraphs (by splitting on new
|
||||||
|
|
Loading…
Reference in a new issue