webspec-index 0.5.0

Query WHATWG/W3C/TC39 web specifications from the command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! LSP server for spec-aware editor integration.
//!
//! Provides hover on spec URLs, step comment validation with diagnostics,
//! inlay hints, code lens coverage, and debounced document analysis.

mod coverage;
mod hover;
mod matcher;
mod scanner;
mod server;
mod steps;

pub use server::serve_stdio;