rshtml_core 0.1.0

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
<!DOCTYPE html>
<html lang="en">
<head>

    @use "Card.rs.html" as Card
    @use "SideBar.rs.html"
    @use "Navbar.rs.html"

    <meta charset="UTF-8">
    <title>@self.title</title>
</head>
<body>
    <Navbar for_escape = @&self.for_escape>
        heyy
    </Navbar>

    this is card:
    <Card title="hello" footer = @self.value>
        this is card content
    </Card>

    <br/>
    <hr/>
    <br/>

    <SideBar content = {

             this is content:

            <p>heyy</p>
            <p>value: @self.value</p>
             }
            _unused ="unused"
    />

    @Card(title: "Card Title", footer: "Card Footer"){}

    @Card(title: 4.53, footer: 543){
        <p>hellooo</p>
        @self.title
    }

</body>
</html>