Skip to content

Instantly share code, notes, and snippets.

@vors
Created February 28, 2015 01:18
Show Gist options
  • Save vors/490bad328cc34f994c88 to your computer and use it in GitHub Desktop.
Save vors/490bad328cc34f994c88 to your computer and use it in GitHub Desktop.
Formatting that can be used to style blog post about PowerShell
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Replace this gist by your own blog gist -->
<script src="https://gist.github.com/vors/4bf101a457e6816f3c0f.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
$('.markdown-body > p > code')
.css("white-space","nowrap");
$('.markdown-body > .highlight-powershell > pre')
.css("font-size","100%");
$(".markdown-body > pre[lang='text']")
.css("background-color","#012456")
.css("color","#ffffff");
$('.gist-file').css("border", "0px");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment