MediaWiki:Common.js: Difference between revisions

From WikiFictionAI
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 8: Line 8:
         console.log("Before: ", content);  // Log the content before cleaning
         console.log("Before: ", content);  // Log the content before cleaning


         // Remove multiple SEO tags, including multiline and inline with other HTML
         // Remove all occurrences of {{#seo: ... }} tags, including multiline
         content = content.replace(/{{#seo:.*?}}/g, '');  // Inline SEO tags
         while (content.match(/{{#seo:[^}]*}}/)) {
        content = content.replace(/{{#seo:[\s\S]*?}}/g, '');  // Multi-line SEO tags
            content = content.replace(/{{#seo:[^}]*}}/g, '');  // Remove inline and multiline SEO tags
        }


         console.log("After: ", content);  // Log the content after cleaning
         console.log("After: ", content);  // Log the content after cleaning

Revision as of 03:53, 23 October 2024

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
    // Target all search result containers
    $('.searchresult').each(function() {
        // Get the current content of the search result
        var content = $(this).html();
        console.log("Before: ", content);  // Log the content before cleaning

        // Remove all occurrences of {{#seo: ... }} tags, including multiline
        while (content.match(/{{#seo:[^}]*}}/)) {
            content = content.replace(/{{#seo:[^}]*}}/g, '');  // Remove inline and multiline SEO tags
        }

        console.log("After: ", content);  // Log the content after cleaning

        // Update the HTML of the search result with the cleaned content
        $(this).html(content);
    });
});