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
//! DOCTYPE 事件 Processor 与结构处理合同。

mod i_doc_type_processor;
mod i_doc_type_structure_handler;

pub use i_doc_type_processor::IDocTypeProcessor;
pub use i_doc_type_structure_handler::IDocTypeStructureHandler;
mod abstract_doc_type_processor;
pub use abstract_doc_type_processor::AbstractDocTypeProcessor;