Module:Cite Talmud: Difference between revisions
Appearance
Content deleted Content added
Coolreader18 (talk | contribs) Simplify + clarify |
Coolreader18 (talk | contribs) Fix typo |
||
Line 13: | Line 13: | ||
end |
end |
||
tractate = args[2] |
tractate = args[2] |
||
daf = args[4] or |
daf = args[4] or args[3] -- These are page or folio numbers as described at Talmud#Slavuta Talmud 1795 and Vilna Talmud 1835. Ranges are accepted, eg. 2b-4a |
||
url = args.url |
url = args.url |
||
nobook = yesno(args[5] or args.nobook) |
nobook = yesno(args[5] or args.nobook) |
Revision as of 04:36, 5 December 2023
Implements {{Cite Talmud}}
local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:yesno')
local talmud = {}
talmud.jb_key = {b = "Babylonian", y = "Jerusalem"}
function talmud.generate_citation(frame)
local args = getArgs(frame, { wrappers = 'Template:Cite Talmud' })
jb = args[1] or 'b'
if not talmud.jb_key[jb] then
return require('Module:Error').error{ 'First argument must be either b for Babylonian Talmud or y for Jerusalem Talmud. (Given "' .. jb .. '")' }
end
tractate = args[2]
daf = args[4] or args[3] -- These are page or folio numbers as described at Talmud#Slavuta Talmud 1795 and Vilna Talmud 1835. Ranges are accepted, eg. 2b-4a
url = args.url
nobook = yesno(args[5] or args.nobook)
if not url then
url = "https://www.sefaria.org/"
if(jb == 'y') then url = url .. 'Jerusalem_Talmud_' end
url = url .. string.gsub(tractate, ' ', '_') .. '.' .. string.gsub(daf or '2a', ' ', '_')
end
str = '[' .. url .. ' ' .. tractate .. ' ' .. ( daf or '' ) .. ']'
if not nobook then
str = '[[Talmud]], <abbr title="' .. talmud.jb_key[jb] .. '">' .. jb .. '.</abbr> ' .. str
end
return str
end
return talmud