index.html 605 B

12345678910
  1. <!DOCTYPE html><html><head></head><body><textarea id="input" placeholder="write pug here" style="width: 100%; min-height: 400px;">p
  2. author
  3. != myName</textarea><pre style="background: #ECECEC;width: 100%; min-height: 400px;"><code id="output"></code></pre><script src="../../pug.js"></script><script>var input = document.getElementById('input');
  4. var output = document.getElementById('output');
  5. setInterval(function () {
  6. pug.render(input.value, {myName: 'Forbes Lindesay', pretty: true}, function (err, res) {
  7. if (err) throw err;
  8. output.textContent = res;
  9. })
  10. }, 500)</script></body></html>