// #todo Find a better name than Dialect, maybe Flavor?
// #todo Could we make dialects/formatting pluggable?
/// The dialect of the source Tan. The formatter offer customized formatting for
/// different Dialects.
#[derive(Copy, Clone, PartialEq, Eq)]pubenumDialect{
Code,
Data,
Html,
Css,}implDefault forDialect{fndefault()->Self{Self::Code
}}