Skip to main content

oak_css/lsp/formatter/
mod.rs

1#![doc = include_str!("readme.md")]
2
3/// Formatter implementation for CSS.
4pub struct CssFormatter {}
5
6impl CssFormatter {
7    /// Formats the given source.
8    pub fn format(&self, source: &str) -> String {
9        source.to_string()
10    }
11}