FastMail
var items = [ 1, 2, 3, 4 ];
el( 'div#message', [
el( 'a.biglink', { href: 'http://www.google.com' }, [
'A link to Google'
]),
el( 'ul', [
items.forEach( function( item ) {
return el( 'li.item', [ item + '. Item ] );
})
]),
items.length > 1 ? 'There are lots of items'.localise() + '. ' : null,
'This is just plain text. <script>I have no effect</script>'
])