Files
nuwiki/crates/nuwiki-core/src/syntax/vimwiki/mod.rs
T

9 lines
216 B
Rust
Raw Normal View History

2026-05-10 17:20:46 +00:00
//! 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};