index.pug 614 B

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