STRd6 / jadelet

Pure and simple clientside templates
https://jadelet.com
MIT License
378 stars 11 forks source link

Mixing and matching rendered values with html nodes #15

Closed STRd6 closed 8 years ago

STRd6 commented 10 years ago

Currently a rendered value will crush html nodes declared before it:

    .person
      .address
      = Subtemplate()

.address will be removed from the DOM and only the result of Subtemplate() will remain. We should be able to keep both.

The current workaround is to wrap = Subtemplate() in a %div or other element.

STRd6 commented 8 years ago

Fixed