You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
293B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src='../../../mustache.js'></script>
  5. </head>
  6. <body>Text content to be overwritten<body>
  7. <script>
  8. document.body.textContent = Mustache.render(
  9. '{{title}} spends {{calc}}',
  10. {
  11. title: 'Joe',
  12. calc: () => 2 + 4
  13. });
  14. </script>
  15. </html>