oak-stylus 0.0.11

Stylus language support for Oak framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("readme.md")]
use crate::language::StylusLanguage;
use oak_core::{RedNode, TextEdit};

pub struct StylusFormatter;

impl StylusFormatter {
    pub fn new(config: &StylusLanguage) -> Self {
        Self
    }
}

impl StylusFormatter {
    pub fn format(&self, _root: &RedNode<StylusLanguage>) -> Vec<TextEdit> {
        vec![]
    }
}