Skip to content

Instantly share code, notes, and snippets.

@adueppen
Last active August 7, 2019 21:54
Show Gist options
  • Save adueppen/30443c55cda661bab24f3407823699db to your computer and use it in GitHub Desktop.
Save adueppen/30443c55cda661bab24f3407823699db to your computer and use it in GitHub Desktop.
# <!--
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