use crate::language::LiquidLanguage;
#[derive(Debug, Clone)]
pub struct LiquidFormatter {
indent_size: usize,
}
impl LiquidFormatter {
pub fn new() -> Self {
Self { indent_size: 4 }
}
pub fn format(&self, source: &str) -> String {
source.to_string()
}
}
impl Default for LiquidFormatter {
fn default() -> Self {
Self::new()
}
}