אונטערשייד צווישן ווערסיעס פון "מעדיעוויקי:Common.js"

פראבע
אין תקציר עריכה
(פראבע)
שורה 285: שורה 285:
} );
} );
} );
} );
// Add structured website data
if (mw.config.get('wgArticleId') === 1) { // הויפט בלאט
    const structuredDataText = JSON.stringify({
        "@context": "https://schema.org",
        "@type": "WebSite",
        "name": "אידיש המכלול",
        "alternateName": ["המכלול אידיש", "המכלול"],
        "url": "https://yi.hamichlol.org.il/"
    });
    const script = document.createElement('script');
    script.setAttribute('type', 'application/ld+json');
    script.textContent = structuredDataText;
    document.head.appendChild(script);
}