pageinfo-rs 0.2.2

CLI tool that analyzes web pages and produces structured LLM-friendly output
Documentation
pub mod analyzer;
pub mod cache;
pub mod client;
pub mod help;
pub mod html;
pub mod http_display;
pub mod output;

pub use analyzer::MetaVerbosity;
pub use analyzer::PageInfo;
pub use analyzer::date_kind::DateKind;
pub use analyzer::link::{
    Link, LinkFilter, LinkGroup, LinkOptions, LinksOutput, RawLink, extract_links,
    extract_raw_links, extract_registered_domain,
};
pub use analyzer::meta_tag::{MetaOutput, MetaTag};
pub use analyzer::text::TextOutput;
pub use analyzer::url_facts::UrlFacts;
pub use client::FetchResult;
pub use client::PageClient;
pub use output::{OutputFormat, RenderOutput};

pub use dom_content_extraction;
pub use wreq;
pub use wreq_util;
pub use wreq_util::Emulation;