9 lines
216 B
Rust
9 lines
216 B
Rust
|
|
//! Vimwiki syntax plugin.
|
||
|
|
//!
|
||
|
|
//! Phase 3 lands the lexer; the parser arrives in Phase 4 and the full
|
||
|
|
//! `SyntaxPlugin` impl follows.
|
||
|
|
|
||
|
|
pub mod lexer;
|
||
|
|
|
||
|
|
pub use lexer::{VimwikiLexer, VimwikiToken, VimwikiTokenKind};
|