📡 Break the barrier between information acquisition and knowledge internalization.
A native RSS reader plugin for SiYuan Note, supporting one-click conversion of RSS articles into your permanent knowledge base.
- RSS/Atom Subscription Management: Add, delete, and organize feeds with built-in presets
- Immersive Reading: Read articles directly within SiYuan with full HTML rendering and text selection support
- One-Click Save to SiYuan: Automatically parse article content and generate SiYuan documents with original links and customizable templates
- Multi-Device Sync: Subscription lists, read status, and article caches sync seamlessly across your devices via SiYuan's sync engine
- Internationalization: Supports Chinese (zh-CN) and English (en), auto-follows SiYuan language setting
- Dark Mode: Auto-follows SiYuan theme (light/dark)
- Tab-based Integration: Opens in a SiYuan tab, no dock panel conflicts
- Layout Switch: Choose between vertical (left-right) and horizontal (top-bottom) layouts
- Unread Count Badges: Real-time unread badges on subscription items, capped at
99+ - Resizable Panels: Drag to adjust sidebar/article list/content panel sizes
- Infinite Scroll: Auto-load more articles when scrolling to bottom
- Keyboard Shortcuts: Full keyboard navigation support
- Customizable Settings: Font size, articles per page, auto-refresh interval, auto-mark-read
- Touch Support: Optimized for touch devices with disabled hover animations
- Smart Caching: 5-minute cache expiry with background refresh for instant subscription switching
| Key | Action |
|---|---|
J/K |
Previous/Next article |
Space |
Scroll article content down one page |
O |
Open original link |
S |
Save to SiYuan |
R |
Refresh current feed |
A |
Mark all as read |
? |
Show help |
The plugin comes with 30 pre-configured RSS feeds across 5 categories:
| Category | Feeds |
|---|---|
| Chinese Tech & Design | 少数派, 爱范儿, 优设, 钛媒体, 机核网, 阮一峰的网络日志 |
| News | China News (9 categories: scroll/important/domestic/world/society/sports/culture/military), IT之家, Macau Cultural Affairs |
| Finance & Economy | China News finance/stock/fortune/energy/real estate, East Money |
| Weather | China Meteorological Administration (5 feeds: alerts/briefings/media/operations/tech) |
| Academic Journals | arXiv CS, PNAS, Nature |
- Download the latest release package
- Extract to
SiYuan/data/plugins/siyuan-rss-reader/ - Restart SiYuan or reload plugins
# Clone the repository
git clone https://github.com/lnedpaul/siyuan-rss-reader.git
cd siyuan-rss-reader
# Install dependencies
npm install
# Build
npm run build
# The dist/ folder contains the plugin files
# Copy to SiYuan/data/plugins/siyuan-rss-reader/# Install dependencies
npm install
# Development mode (watch for changes)
npm run dev
# Production build
npm run build
# Type check
npm run type-checksiyuan-rss-reader/
├── src/ # Source code
│ ├── index.ts # Main plugin logic
│ ├── index.scss # Styles
│ ├── featured-feeds.json # Built-in feed presets
│ └── i18n/ # Translations
│ ├── zh-CN.json
│ └── en.json
├── dist/ # Build output (generated, not in git)
├── plugin.json # Plugin manifest
├── icon.png # Plugin icon
├── preview.png # Market preview image
├── CHANGELOG.md # Release notes
├── CONTRIBUTING.md # Contribution guide
├── README.md
├── README_zh-CN.md
├── LICENSE
├── package.json
├── tsconfig.json
└── webpack.config.js
Note: The dist/ directory is generated during build and is not committed to the repository. Download pre-built releases from the Releases page.
Access plugin settings via the ⚙️ button in the sidebar:
- Articles per page: Number of articles to load per batch (default: 20)
- Font size: 12px–20px, adjustable via slider
- Layout mode: Vertical (left–right split) or Horizontal (top–bottom split)
- Auto-mark read: Automatically mark articles as read when selected
- Auto-refresh interval: Minutes between automatic feed updates (disabled by default)
- Save template: Optional metadata prefix (site name, save date/time, original link) when saving articles
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
- Fork the repository
- Create a feature branch:
git checkout -b feature/my-feature - Make your changes
- Run type check:
npm run type-check - Build:
npm run build - Submit a pull request
This project is licensed under the MIT License.
- SiYuan Note - A powerful personal knowledge management system
- DOM Purify - HTML sanitization
- @SunsetSail - Contributed event listener cleanup and text selection support (PR #3)