oak-ejs 0.0.11

EJS template language for Oak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("readme.md")]
#![warn(missing_docs)]
#![feature(portable_simd)]
#![feature(new_range_api)]

#[cfg(any(feature = "lsp", feature = "oak-highlight", feature = "oak-pretty-print"))]
pub mod lsp;
/// MCP module.
#[cfg(feature = "mcp")]
pub mod mcp;

pub mod ast;
pub mod language;
pub mod lexer;
pub mod parser;

pub use lexer::token_type::JavaScriptTokenType;
pub use parser::element_type::JavaScriptElementType;