change multiple break tags into horizontal rule and collapse empty paragraphs
当前为
// ==UserScript==
// @name ao3 remove extra line breaks
// @namespace https://greasyfork.org/en/users/36620
// @version 0.3
// @description change multiple break tags into horizontal rule and collapse empty paragraphs
// @author scriptfairy
// @include http*://archiveofourown.org/works/*
// @grant none
// @run-at context-menu
// ==/UserScript==
(function($) {
$('<style>').text('#chapters br+br {display:none;} #chapters br:last-child {display:block;}').appendTo($('head'));
var nbsp = $('#chapters').html().replace(/ /g, ' ');
$('#chapters').html(nbsp);
})(window.jQuery);