Last active
August 7, 2019 21:54
-
-
Save adueppen/30443c55cda661bab24f3407823699db 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
# <!-- | |
echo "this is a test" | |
for i in {0..9}; do | |
echo $i | |
done | |
exit | |
# --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<style> | |
/*slightly hacky way to hide the # for the shell script*/ | |
body { | |
visibility: hidden; | |
} | |
.real-body { | |
visibility: visible; | |
margin-top: -2em; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="real-body"> | |
<p>this is a test</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment