@@ -9,6 +9,7 @@ A powerful command-line note-taking application with semantic vector search capa
99## ✨ Features
1010
1111- 📝 ** Complete Note Management** - Create, edit, delete, and organize notes with powerful CLI tools
12+ - 🌐 ** Website Import** - Import web pages as notes with headless browser support and image URL preservation
1213- 🌐 ** Modern Web Interface** - Beautiful, responsive web UI with real-time markdown preview and graph visualization
1314- 🏷️ ** Smart Tagging System** - Organize notes with tags, search by tags, and manage tag collections
1415- 🔍 ** Triple Search Methods** - Semantic vector search, traditional text search, and tag-based search
@@ -455,6 +456,28 @@ ml-notes delete -f 123
455456ml-notes delete --all
456457```
457458
459+ #### Import Website Content
460+ ``` bash
461+ # Import a website as a new note
462+ ml-notes import-url https://blog.example.com/article
463+
464+ # Import with custom tags
465+ ml-notes import-url https://docs.example.com/guide --tags " docs,reference,tutorial"
466+
467+ # Import with AI auto-tagging
468+ ml-notes import-url https://example.com/post --auto-tag
469+
470+ # Import with custom timeout for slow-loading sites
471+ ml-notes import-url https://heavy-site.com --timeout 60s
472+ ```
473+
474+ ** Features:**
475+ - ** Headless Browser** : Uses Chrome to render JavaScript and dynamic content
476+ - ** Smart Content Extraction** : Prioritizes main content areas (article, main) while filtering out navigation, ads, and sidebars
477+ - ** Image URL Preservation** : Converts relative image URLs to absolute URLs while maintaining external/CDN links
478+ - ** Markdown Conversion** : Clean HTML-to-markdown conversion with proper formatting
479+ - ** Security-First** : Uses secure browser settings with SSL validation for live websites
480+
458481### Tag Management
459482
460483#### Managing Tags
0 commit comments