mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-28 22:18:23 +00:00
11 lines
230 B
Lua
11 lines
230 B
Lua
function Link(el)
|
|
el.attributes['reference-type'] = nil
|
|
el.attributes['reference'] = nil
|
|
return el
|
|
end
|
|
|
|
-- Drop Div wrappers (e.g. table/titlepage containers), keeping their content.
|
|
function Div(el)
|
|
return el.content
|
|
end
|