pandoc.lua: re-add missing MetaMap function
This was a bug introduced in version 2.0.4 (commit
3f1f9536d4
).
This commit is contained in:
parent
f6abf15832
commit
46d3c95ecd
1 changed files with 4 additions and 1 deletions
|
@ -202,7 +202,10 @@ end
|
|||
--- Meta map
|
||||
-- @function MetaMap
|
||||
-- @tparam table key_value_map a string-indexed map of meta values
|
||||
M.MetaValue:create_constructor("MetaMap", function (mm) return mm end)
|
||||
M.MetaMap = M.MetaValue:create_constructor(
|
||||
"MetaMap",
|
||||
function (mm) return mm end
|
||||
)
|
||||
|
||||
--- Creates string to be used in meta data.
|
||||
-- Does nothing, lua strings are meta strings.
|
||||
|
|
Loading…
Add table
Reference in a new issue