Skip to content

Instantly share code, notes, and snippets.

@77web
Created May 2, 2011 14:09
Show Gist options
  • Save 77web/951654 to your computer and use it in GitHub Desktop.
Save 77web/951654 to your computer and use it in GitHub Desktop.
OpenPNE3用gist小窓
function url2cmd(url)
{
var gist = url.match(/^https:\/\/gist.github.com\/([0-9]+)/);
if(gist)
{
var gistId = RegExp.$1;
var jsUrl = 'https://gist.github.com/' + gistId + '.js';
document.write('<style type="text/css">.gist .line { text-align: left; }</style>');
document.write('<script type="text/javascript" src="' + jsUrl + '"></script>');
}
else
{
pne_url2a(url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment