thymeleaf 0.1.0-beta.0

A framework-neutral Thymeleaf-compatible dynamic template engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
//! 注释事件 Processor 与结构处理合同。

mod i_comment_processor;
mod i_comment_structure_handler;

pub use i_comment_processor::ICommentProcessor;
pub use i_comment_structure_handler::ICommentStructureHandler;
mod abstract_comment_processor;
pub use abstract_comment_processor::AbstractCommentProcessor;