fix: update version to 1.12 in manifest; modify selector in posts function to include #archive-container

This commit is contained in:
Himanshu
2025-12-29 10:27:08 +05:30
parent 86e74f911f
commit 065a8cb168
3 changed files with 4 additions and 4 deletions

View File

@@ -84,8 +84,8 @@ async function posts(
});
const $ = cheerio.load(await urlRes.text());
const posts: Post[] = [];
$(".blog-items,.post-list")
?.children("article")
$(".blog-items,.post-list,#archive-container")
?.children("article,.entry-list-item")
?.each((index, element) => {
const post = {
title: (