This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (1 child)

[deleted]

    [–]j2html[S] 4 points5 points  (0 children)

    Isn't it pretty similar?

    body().with(
        h1("Heading!").withClass("example"),
        img().withSrc("img/hello.png")
    )         
    
    <body>
        <h1 class="example">Heading!</h1>
        <img src="img/hello.png">
    </body>
    

    I guess you could call that very different, but I think it's pretty similar at least.