| 123456789101112131415 |
- <!DOCTYPE html>
- <html>
- <head>
- <script src='../../../mustache.js'></script>
- </head>
- <body>Text content to be overwritten<body>
- <script>
- document.body.textContent = Mustache.render(
- '{{title}} spends {{calc}}',
- {
- title: 'Joe',
- calc: () => 2 + 4
- });
- </script>
- </html>
|