First off, I can't get it to work without [object DocumentFragment] being rendered.
Second, is it a bad idea to even do what I'm trying to do:
- can.Mustache.registerHelper("route-root", function()
- {
- return can.route.bindings.pushstate.root;
- });
- var message = 'this is a string with a <a href="{{route-root}}/something">link</a>.';
- scope.items.push(
- {
- message: can.view(message, {}),
- something: true
- });










