2026-05-10 16:01:58 +00:00
|
|
|
//! Core parser, AST, and renderer for nuwiki.
|
|
|
|
|
//!
|
|
|
|
|
//! This crate is editor-independent and must never depend on `nuwiki-lsp` or
|
2026-05-30 18:35:40 +00:00
|
|
|
//! `nuwiki-ls`.
|
2026-05-10 16:25:24 +00:00
|
|
|
|
|
|
|
|
pub mod ast;
|
2026-05-11 21:04:55 +00:00
|
|
|
pub mod date;
|
2026-05-30 23:32:07 -03:00
|
|
|
pub mod listsyms;
|
2026-05-10 19:12:01 +00:00
|
|
|
pub mod render;
|
2026-05-10 16:58:00 +00:00
|
|
|
pub mod syntax;
|