Open
Description
Currently Table stringifies HTML here:
Line 316 in 3073005
We could change that to allow HTML to be passed through without needing a custom format, say:
function maybeStringify(value) {
return value instanceof Node ? value : stringify(value);
}