Rendering with compiled html's

This page uses HTML's compiled to Javascript functions.
The 'render' links below are just calling the compiled function, instead of compiling them on the fly as in the all examples pages

Example 2: Iteration on a table

render
Player
Chloe

Example 3: Iteration on a list

render
  1. Beebole

Example 4: Passing a JS function as a directive (Iteration on a table zebra like)

Here the target and the source HTML are the same. The HTML will replace itself.
render
Player
Chloe

Example 5: Nested Iteration

This was not explained in the examples. The objective here is to have a double iteration. First on teams, then on players.
It shows the nested iteration and as well how a template can be included in another.
render
Team Name
PositionPlayerScore
1Chloe20

Example 6: Recursive List - the recursion is not dynamic :(

render