thymeleaf 0.1.0-beta.1

A framework-neutral Thymeleaf-compatible dynamic template engine for Rust
1
2
3
4
5
6
7
8
9
10
11
12
//! Thymeleaf 模板输入 Reader 适配器。

mod block_aware_reader;
mod parser_level_comment_markup_reader;
mod parser_level_comment_text_reader;
mod prototype_only_comment_markup_reader;
mod prototype_only_comment_text_reader;

pub use parser_level_comment_markup_reader::ParserLevelCommentMarkupReader;
pub use parser_level_comment_text_reader::ParserLevelCommentTextReader;
pub use prototype_only_comment_markup_reader::PrototypeOnlyCommentMarkupReader;
pub use prototype_only_comment_text_reader::PrototypeOnlyCommentTextReader;