No. It actually means the opposite. The renderer attaches live binding to only the live-bound part. So e.g. if you have something like
- <div class="{{attributeName}}"><span>This is some {{text}}</span></div>
Only the class attribute will be updated if attributeName changes and only the text node if text changes.
This is not done when the string array is joned. Instead the string contains placeholder attributes like data-hookup-id in the HTML
that lets the renderer know where live-binding is happening.