Created
June 22, 2019 09:06
-
-
Save amitkeret/0321bfe357e775369dd29e04c7adf1d4 to your computer and use it in GitHub Desktop.
Quick-and-dirty on-the-fly CoffeeScript + Stylus compiling in the browser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title></title> | |
<meta charset="UTF-8"> | |
<style language="stylus"> | |
body | |
h1 | |
color red | |
</style> | |
</head> | |
<body> | |
<h1>stylus'ed</h1> | |
<script type="text/coffeescript"> | |
coffee = ()-> 'coffeescript' | |
alert "Hello #{do coffee}!" | |
</script> | |
<script crossorigin="anonymous" src="https://cdn.jsdelivr.net/npm/coffeescript/lib/coffeescript-browser-compiler-legacy/coffeescript.js"></script> | |
<script crossorigin="anonymous" src="http://stylus-lang.com/try/stylus.min.js"></script> | |
<script> | |
document.head.querySelectorAll('style[language="stylus"]').forEach(function(el, index){ | |
stylus(el.innerText.trim()).render(function(err, str){ | |
var s = document.createElement('style'); | |
s.innerHTML = str; | |
document.head.appendChild(s); | |
el.parentNode.removeChild(el); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment