oak-rhombus 0.0.11

Rhombus programming language parser with support for macro-extensible syntax.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("readme.md")]

/// Rhombus syntax highlighter
pub struct RhombusHighlighter;

/// Alias for backwards compatibility
pub type SchemeHighlighter = RhombusHighlighter;

impl RhombusHighlighter {
    pub fn new() -> Self {
        Self
    }
}