Preserve excerpts
Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
parent
3d3ecb52b2
commit
c4028e52fa
1 changed files with 5 additions and 1 deletions
|
@ -33,6 +33,10 @@ static ELEMENT_ALLOW_LIST: Lazy<Selector> = Lazy::new(|| {
|
|||
// Meta tags that affect rendering.
|
||||
"head > meta[charset]",
|
||||
"head > meta[http-equiv]",
|
||||
// Content from other articles (expanded later)
|
||||
// TODO: See if these are used in other ways.
|
||||
"div.excerpt-block",
|
||||
"div.excerpt",
|
||||
]
|
||||
.join(", "),
|
||||
)
|
||||
|
@ -263,7 +267,7 @@ fn final_expansions(document: &mut Html) {
|
|||
.filter_map(ElementRef::wrap)
|
||||
{
|
||||
if (el.value().name() == "span" && el.value().attrs().next().is_none())
|
||||
|| ["section", "body", "html"].contains(&el.value().name())
|
||||
|| ["section", "div", "body", "html"].contains(&el.value().name())
|
||||
{
|
||||
to_expand.push(el.id());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue