funkysouls

remove link tag from posts' title

// ==UserScript==
// @name         funkysouls
// @namespace    http://funkysouls.com/
// @version      0.1
// @description  remove link tag from posts' title
// @author       You
// @match        http://funkysouls.com/*
// @grant        none
// @require https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==

$(function() {
	$("h2").each(function(i) {
        const txt = $(this).find("a").text();
        $(this).text(txt);
    });
})