oak-css 0.0.11

CSS stylesheet language parser with support for web styling and layout processing.
Documentation
#![doc = include_str!("readme.md")]
#![feature(new_range_api)]
#![warn(missing_docs)]
#![doc = include_str!("readme.md")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]

/// AST module.
pub mod ast;
/// Builder module.
pub mod builder;
/// Type definitions module.
/// Language configuration module.
pub mod language;
/// Lexer module.
pub mod lexer;
/// LSP module.
#[cfg(any(feature = "lsp", feature = "oak-highlight", feature = "oak-pretty-print"))]
pub mod lsp;
/// MCP module.
#[cfg(feature = "mcp")]
pub mod mcp;
/// Parser module.
pub mod parser;

// pub use oak_core::{TokenType, ElementType};

pub use crate::{
    ast::{AtRule, CssNode, CssRoot, Declaration, RuleSet, Selector, Value},
    builder::CssBuilder,
    language::CssLanguage,
    lexer::{CssLexer, CssTokenType},
    parser::{CssElementType, CssParser},
};