nedark / ataturk style

// ==UserScript==
// @name       ataturk style
// @namespace  ataturk
// @version    0.1
// @description  ataturk style
// @match      http://www.elotrolado.net/*
// @require    http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @copyright  aaaa
// ==/UserScript==


var $textNodes = function(el) {
    return $(el).find(":not(iframe)").addBack().contents().filter(function() {
        return this.nodeType == 3;
    });
};

$textNodes(".postbody .content").each(function() {
	var html = $(this).text();
console.log(this.textContent);
	//$(this).html(html.replace(/(\w\+)[\.\,\:\-]([^\"])/gi, "\1;"));
	var last;
	$(this).after(
		html.replace(/ ?[\.\,\:\-] ?/gi, ";")
		.replace(/\b(\w*)\b/gi, function(m, p1) {
			if (last==true) { last = false; return p1; }
			if (p1.length < 5) return p1;
			last = true;
			return "<strong>"+p1+"</strong>"
			})
	);
	this.parentNode.removeChild(this);
	
})