Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions src/aggregator.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,11 @@ async function aggregateCategory(categoryName, feeds) {
// Generate README with categories
function generateREADME(categorizedArticles) {
let readme = `\`\`\`
▄████████ ▄█ ▄███████▄ ███ █▄ ▄█ ▄████████ ▄████████
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ ███ ███▌ ███ ███ ███ ███ ███ ███ █▀ ███ █▀
███ ███ ███▌ ███ ███ ███ ███ ███ ███ ▄███▄▄▄
▀███████████ ███▌ ▀█████████▀ ███ ███ ███ ███ ▀▀███▀▀▀
███ ███ ███ ███ ███ ███ ███ ███ █▄ ███ █▄
███ ███ ███ ███ ███ ███ ███▌ ▄ ███ ███ ███ ███
███ █▀ █▀ ▄████▀ ████████▀ █████▄▄██ ████████▀ ██████████
___ ____ ____ __ ____ _____ ______
/ | / _/ / __ \/ / / / / / ___// ____/
/ /| | / / / /_/ / / / / / \__ \/ __/
/ ___ |_/ / / ____/ /_/ / /______/ / /___
/_/ |_/___/ /_/ \____/_____/____/_____/
Comment on lines +145 to +148
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The backslashes in the ASCII art need to be escaped for proper display in Markdown. Currently using single backslashes which will be interpreted as escape sequences in the generated README.md file. Each backslash should be doubled (e.g., \\ instead of \) so that the Markdown renderer displays them correctly.

Copilot uses AI. Check for mistakes.
\`\`\`

<div align="center">
Expand Down
Loading