@vakra-dev/reader 0.0.3 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -175,7 +175,7 @@
175
175
 
176
176
  END OF TERMS AND CONDITIONS
177
177
 
178
- Copyright 2025 Vakra
178
+ Copyright 2026 The Reader Authors
179
179
 
180
180
  Licensed under the Apache License, Version 2.0 (the "License");
181
181
  you may not use this file except in compliance with the License.
package/README.md CHANGED
@@ -572,6 +572,36 @@ Reader uses [Ulixee Hero](https://ulixee.org/), a headless browser with advanced
572
572
  - **Health Monitoring** - Background health checks every 5 minutes
573
573
  - **Request Queuing** - Queues requests when pool is full (max 100)
574
574
 
575
+ ### HTML to Markdown: supermarkdown
576
+
577
+ Reader uses [**supermarkdown**](https://github.com/vakra-dev/supermarkdown) for HTML to Markdown conversion - a sister project we built from scratch specifically for web scraping and LLM pipelines.
578
+
579
+ **Why we built it:**
580
+
581
+ When you're scraping the web, you encounter messy, malformed HTML that breaks most converters. And when you're feeding content to LLMs, you need clean output without artifacts or noise. We needed a converter that handles real-world HTML reliably while producing high-quality markdown.
582
+
583
+ **What supermarkdown offers:**
584
+
585
+ | Feature | Benefit |
586
+ |---------|---------|
587
+ | **Written in Rust** | Native performance with Node.js bindings via napi-rs |
588
+ | **Full GFM support** | Tables, task lists, strikethrough, autolinks |
589
+ | **LLM-optimized** | Clean output designed for AI consumption |
590
+ | **Battle-tested** | Handles malformed HTML from real web pages |
591
+ | **CSS selectors** | Include/exclude elements during conversion |
592
+
593
+ supermarkdown is open source and available as both a Rust crate and npm package:
594
+
595
+ ```bash
596
+ # npm
597
+ npm install @vakra-dev/supermarkdown
598
+
599
+ # Rust
600
+ cargo add supermarkdown
601
+ ```
602
+
603
+ Check out the [supermarkdown repository](https://github.com/vakra-dev/supermarkdown) for examples and documentation.
604
+
575
605
  ## Documentation
576
606
 
577
607
  | Guide | Description |