1#![doc = include_str!("readme.md")]
2#![feature(new_range_api)]
3#![allow(missing_docs)]
4#![doc = include_str!("../readme.md")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
6#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
7pub mod ast;
11pub mod builder;
13pub mod language;
16pub mod lexer;
18#[cfg(any(feature = "lsp", feature = "oak-highlight", feature = "oak-pretty-print"))]
20pub mod lsp;
21#[cfg(feature = "mcp")]
23pub mod mcp;
24pub mod parser;
26
27pub use crate::{
30 language::CssLanguage,
31 lexer::{CssLexer, CssTokenType},
32 parser::{CssElementType, CssParser},
33};