Docs: don't reformat embedded gists

This commit is contained in:
Mottie 2014-06-19 11:36:32 -05:00
parent d4d1da391e
commit 931e4c1bae
2 changed files with 5 additions and 1 deletions

View File

@ -56,6 +56,10 @@
.output-type {
width: 80px;
}
pre {
/* override bootstrap setting */
overflow-y: hidden !important;
}
</style>
<!-- Tablesorter: required -->

View File

@ -29,7 +29,7 @@
}
// apply to already pre-formatted blocks to add <br> for IE
$('pre:not(.mod)').each(function(){
$('pre.prettyprint:not(.mod)').each(function(){
$t = $(this);
$t.html( cleanupCode( $t.html() ) );
});