High-performance web crawler that converts pages to Markdown
1.3K
High-performance web crawler that extracts content and converts pages to Markdown format.
Run Inform in Docker:
# Crawl a website
docker run --rm -v $(pwd):/output fwdslsh/inform:latest https://docs.example.com
# With custom options
docker run --rm -v $(pwd):/output fwdslsh/inform:latest \
https://docs.example.com \
--output-dir /output \
--max-pages 50 \
--concurrency 5
--output-dir <path>: Output directory for Markdown files (default: current directory)--max-pages <number>: Maximum pages to crawl (default: 100)--delay <ms>: Delay between requests in milliseconds (default: 200)--concurrency <number>: Number of concurrent requests (default: 3)--max-depth <number>: Maximum crawl depth (default: 10)--help: Show usage information--version: Show current version# Crawl documentation site and save to local directory
docker run --rm -v $(pwd)/docs:/output fwdslsh/inform:latest \
https://docs.example.com \
--output-dir /output \
--max-pages 100
For full documentation and advanced usage, see:
Content type
Image
Digest
sha256:9110570bb…
Size
68.6 MB
Last updated
7 months ago
docker pull fwdslsh/inform:v0.2.1