Preserve excerpts

Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
Evan Lloyd New-Schmidt 2023-08-10 16:59:43 -04:00 committed by Evan Lloyd New-Schmidt
parent 3d3ecb52b2
commit c4028e52fa

View file

@ -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());
}