SpBot archives all sections tagged with {{Section resolved|1=~~~~}} .

Implement my suggestion to filter 384

edit

In addition to opting out dewiki, could you implement my update to the repeating characters filter? I opted out some wikis that have their own filters, including the English Wikivoyage, and have done some optimizations:

equals_to_any(page_namespace, 0, 1, 4, 5, 1198) &
!("autoconfirmed" in user_rights) &
( 
    characters := "[bcdfghjklmnpqrstvwxz]{6,}";
    consonants := "([^_:.,*'|=#}{0 -]{1,9})\1{7}";
    match := characters   "|"   consonants;
    
    (
        (
            added_lines rlike characters &
            !(removed_lines rlike characters)
        ) | (
            rmwhitespace(added_lines) rlike consonants &
            !(rmwhitespace(removed_lines) rlike consonants)
        )
    ) &
    !(added_lines rlike ("<\s*(?:code|source|syntaxhighlight)|(?:data\s*:|https?:\/\/)\S*?(?:"   match   ")")) &
    !(rcount("(?:^|\n)[!|]|<br>", added_lines) > rcount("(?:^|\n)[!|]|<br>", removed_lines)) &
    !(equals_to_any(wiki_name, "cawiki", "ckbwiki", "cswiki", "dewiki", "enwikibooks", "enwikivoyage", "eswiki", "etwiki", "fawiki", "fawikivoyage", "frwiki", "frwikibooks", "frwikiquote", "frwikiversity", "glwiki", "itwiki", "nlwiki", "simplewiki", "wikidatawiki"))
) &
global_user_editcount < 50

Codename Noreste (talk) 03:20, 1 January 2025 (UTC)Reply

@Codename Noreste:   Done --SHB (tc) 03:22, 1 January 2025 (UTC)Reply
Edited it again to fix the regex part of the rcount exclusion part. Codename Noreste (talk) 04:23, 1 January 2025 (UTC)Reply
Done – fixed. --SHB (tc) 04:31, 1 January 2025 (UTC)Reply