wisp-lang / wisp

A little Clojure-like LISP in JavaScript
https://gozala.github.io/wisp/
Other
980 stars 68 forks source link

make dist/wisp.min.js builds distributable. #151

Closed chr15m closed 7 years ago

chr15m commented 7 years ago

Can be used directly in the browser and will find and execute all script tags with type='application/wisp'.

<script src="dist/wisp.min.js"></script>
<script type="application/wisp">
  (alert "Hello!")
</script>
<script src="my-wisp-file.wisp" type="application/wisp"></script>