באַניצער:תנא קמא/tanachLinks.js
קפיצה לניווט
קפיצה לחיפוש
אַכטונג: נאכן היטן, ברויכט איר אפשר נאך אויסקרויזן דעם בראוזער'ס זאַפאַס צו זען די ענדערונגען.
- פייערפוקס/סאפארי: האלט אראפ שיפט בשעת'ן דרוקן Reload, אדער דרוקט Ctrl-F5 אדער Ctrl-R (אויף א מאקינטאש ⌘-R)
- גוגל כראם: דרוקט Ctrl-Shift-R (אויף א מאקינטאש ⌘-Shift-R)
- אינטערנעט עקספלארער: האלט אראפ Ctrl בשעת'ן קליקן Refresh, אדער דרוקט Ctrl-F5
- אפערע: גייט צו מעניו → שטעלונגען ( אפערע → פרעפערנצן אויף א מעק) און דערנאך צו פריוואטקייט & און זיכערהייט → רוימען בראוזער דאטא → בילדער און טעקעס אין זאפאס
mw.hook('wikipage.content').add(function($content) {
console.log("Tanach Citation Script Running"); // Debugging message
$content.find(".tanach-citation").each(function() {
var $this = $(this);
console.log("Found citation:", $this.text()); // Debugging each found citation
var sefer = $this.data("sefer");
var perek = $this.data("perek");
var pasuk = $this.data("pasuk") || 1;
console.log("Extracted:", sefer, perek, pasuk); // Debugging extracted values
var sefariaUrl = `https://www.sefaria.org/${encodeURIComponent(sefer)}.${perek}.${pasuk}`;
var iconHtml = `<a href="${sefariaUrl}" target="_blank" title="View on Sefaria">
<img src="https://www.sefaria.org/static/img/favicon.ico" style="width: 16px; height: 16px; vertical-align: middle;" />
</a>`;
$this.append(' ' + iconHtml); // Append icon to the citation
});
});