/*
* @title ↺ Gist
* @description Turn back to gist from raw
* @include https://raw.github.com/gist/*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function () {
var id = (/^https:\/\/raw\.github\.com\/gist\/(\d+)/.exec(location.href) || [])[1];
if (!id) return;
location.href = 'https://gist.github.com/' + id;
})();