Jump to content

Module:SB: Difference between revisions

102 bytes added ,  15 April 2021
no edit summary
(Created page with "local sb = {} -- function package for HPB Scrapbooks function sb.hello( frame ) return "Hello, world!" end return sb")
 
No edit summary
Line 1: Line 1:
local sb = {} -- function package for HPB Scrapbooks
local sb = {} -- functions package for HPB Scrapbooks


function sb.hello( frame )
function sb.hello( frame )
     return "Hello, world!"
     return "Hello, world!"
end
end
function sb.item_id( volume, page, item )
id = volume ..'-'.. page ..'-'.. item
    return id
end


return sb
return sb