rshtml_core 0.5.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
1
2
3
4
5
6
7
8
9
use crate::analyzer::Analyzer;

pub struct ChildContentAnalyzer;

impl ChildContentAnalyzer {
    pub fn analyze(analyzer: &mut Analyzer) {
        analyzer.component.has_child_content = true;
    }
}