Skip to content

Instantly share code, notes, and snippets.

@edvakf
Created January 29, 2011 22:02
Show Gist options
  • Select an option

  • Save edvakf/802248 to your computer and use it in GitHub Desktop.

Select an option

Save edvakf/802248 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @include http://mojix.org/*
// ==/UserScript==
(function() {
var b = document.querySelector('.entry_body');
b.innerHTML = b.innerHTML.replace(/(<br>\s*)?<([\s\S]*?)>(。)?(\s*<br>)?/g, function($0,$1,$2,$3,$4) {
return '<blockquote style="background-color:#f8f8f8;border:double black 3px;padding:0.5em;">' + $2 + ($3||'') + '</blockquote>';
});
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment