Created
November 30, 2014 15:15
-
-
Save yorkie/47b5b18388a40f0d3f64 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var multiline = function (f) { | |
return f.toString().split('\n').slice(1, -1).join('\n'); | |
}; | |
var data = multiline(function() {/* | |
<html> | |
<body> | |
<h1>Hello, Parallel World</h1> | |
</body> | |
</html> | |
*/}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment