15 lines
236 B
Lua
15 lines
236 B
Lua
|
local List = require 'pandoc.List'
|
||
|
local license = nil
|
||
|
|
||
|
function Div (div)
|
||
|
if div.identifier == 'license' then
|
||
|
license = div.content
|
||
|
return {}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function Meta (meta)
|
||
|
meta.license = license
|
||
|
return meta
|
||
|
end
|