csslsrs 0.1.0

Language service for CSS, providing features like completions, hover, and folding ranges.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod analyzer;
pub mod parser;

pub mod css_data;
pub mod service;
pub mod store;

pub mod features {
    pub mod color_parser;
    pub mod colors;
    pub mod folding;
    pub mod hover;
}

#[cfg(feature = "wasm")]
pub mod wasm_text_document;

pub mod converters;