Module:SB

From Teopedia library
Revision as of 09:30, 15 April 2021 by Pavel Malakhov (addition | contribs) (Created page with "local sb = {} -- function package for HPB Scrapbooks function sb.hello( frame ) return "Hello, world!" end return sb")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Lua functions for HPB Scrapbooks.

Functions

item_id

Called from {{HPB-SB-item}} for setting semantic property [[HPB SB item ID]].

{{#invoke: SB | item_id | volume=1 | page=17 | item=4 }}

footnote

Called from {{HPB-SB-item}}.

{{#invoke: SB | footnote 
 | title=
 | author=
 | author_signed=
 | type= 
 | source_title=
 | source_details=
 | notes=
 | archivist_notes=
 | language = 
 | translator = 
}}


Debug example

=p.item_id{args={["volume"]="1",["page"]="17.2",["item"]="3"}}

Module code


local sb = {} -- function package for HPB Scrapbooks

function sb.hello( frame )
    return "Hello, world!"
end

return sb