oak-scss 0.0.11

SCSS CSS preprocessor language parser with support for modern CSS features and dynamic styling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("readme.md")]

/// SCSS Code Formatter
pub struct ScssFormatter;

impl ScssFormatter {
    pub fn new() -> Self {
        Self
    }

    pub fn format(&self, source: &str) -> String {
        source.to_string()
    }
}