This PR adds support for a [fragments](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment). Currently Jadelet requires a single root element (e.g., HTML element) in the template. However, there are cases where HTML root element can be redundant, or might produce invalid HTML. For example, there might be a case where we would like to output the content in the existing `<ul>` element. With this PR, we would be able to use a (reserved) word "Fragment" or a symbol `<>` in the template string. ```coffeescript var template = """ Fragment li 1 li 2 li 3 """ var template = """ <> li 1 li 2 li 3 """ ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by zdenko and has received 6 comments.