From 404bacd9b6bc9e720c8cdaac8c0ecbd2b66fc0dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Cora=C3=A7=C3=A3o?= Date: Thu, 4 Jan 2024 21:53:23 +0000 Subject: [PATCH] updated readme --- README.md | 1 + processUsers.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69a6c38b..648efd92 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Blowfish is designed to be a powerful, lightweight theme for [Hugo](https://gohu - Multiple homepage layouts - Multiple authors - Series of articles +- Zen mode for article reading - Flexible with any content types, taxonomies and menus - Header and footer menus - Nested menus & sub-navigation menu diff --git a/processUsers.js b/processUsers.js index f04bdfd3..7975ba20 100644 --- a/processUsers.js +++ b/processUsers.js @@ -61,12 +61,11 @@ puppeteer if (!fs.existsSync(dir)) { fs.mkdirSync(dir); - } console.log(i, users[i].title); fs.writeFileSync(dir + '/index.md', userMDFile); await page.goto(users[i].url); await page.screenshot({ path: dir + "/feature.jpg" }); - //} + } }