Skip to content

Instantly share code, notes, and snippets.

@omoshetech-t
Last active September 5, 2016 15:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save omoshetech-t/10683373 to your computer and use it in GitHub Desktop.
Save omoshetech-t/10683373 to your computer and use it in GitHub Desktop.
Google gadget for embedding Gist.
<?xml version="1.0"?>
<Module>
<ModulePrefs title="Gist">
<Require feature="dynamic-height"/>
</ModulePrefs>
<UserPref name="id" display_name="Gist ID" required="true" default_value="10683373"/>
<UserPref name="font_size" display_name="Font size (px)" required="true" default_value="12"/>
<UserPref name="line_height" display_name="Line height (px)" required="true" default_value="16"/>
<Content type="html">
<![CDATA[
<style type="text/css">
body, td, div, span, p {
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-size: __UP_font_size__px;
line-height: __UP_line_height__px;
}
.gist .gist-file .gist-data {
background-color: white !important;
}
.gist .gist-file .gist-data .line-numbers {
background-color: white !important;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://gist.github.com/__UP_id__.js"></script>
<script>
$(function() {
$('.gist-meta').children('a').attr('target', '_blank');
gadgets.window.adjustHeight();
});
</script>
]]>
</Content>
</Module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment