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() } }