Module:Cite Talmud: Difference between revisions
Appearance
Content deleted Content added
Coolreader18 (talk | contribs) Fix typo |
Coolreader18 (talk | contribs) Re-add html space entity handling |
||
Line 1: | Line 1: | ||
local getArgs = require('Module:Arguments').getArgs |
local getArgs = require('Module:Arguments').getArgs |
||
local yesno = require('Module:yesno') |
local yesno = require('Module:yesno') |
||
local function tidyVal(key, val) |
|||
if type(val) == 'string' then |
|||
val = val:gsub(" ", ' '):match('^%s*(.-)%s*$') |
|||
if val == '' then |
|||
return nil |
|||
else |
|||
return val |
|||
end |
|||
else |
|||
return val |
|||
end |
|||
end |
|||
local talmud = {} |
local talmud = {} |
||
Line 7: | Line 21: | ||
function talmud.generate_citation(frame) |
function talmud.generate_citation(frame) |
||
local args = getArgs(frame, { wrappers = 'Template:Cite Talmud' }) |
local args = getArgs(frame, { wrappers = 'Template:Cite Talmud', valueFunc = tidyVal }) |
||
jb = args[1] or 'b' |
jb = args[1] or 'b' |
||
if not talmud.jb_key[jb] then |
if not talmud.jb_key[jb] then |
Latest revision as of 04:46, 5 December 2023
Implements {{Cite Talmud}}
local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:yesno')
local function tidyVal(key, val)
if type(val) == 'string' then
val = val:gsub(" ", ' '):match('^%s*(.-)%s*$')
if val == '' then
return nil
else
return val
end
else
return val
end
end
local talmud = {}
talmud.jb_key = {b = "Babylonian", y = "Jerusalem"}
function talmud.generate_citation(frame)
local args = getArgs(frame, { wrappers = 'Template:Cite Talmud', valueFunc = tidyVal })
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