haml/
generator.rs

1use ast::{Arena, ToHtml};
2
3pub fn to_html(arena: &Arena) -> String {
4    arena.to_html()
5}