mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2024-10-01 01:25:56 -04:00
100b5f195b
and disabled PDF builds
8 lines
168 B
Lua
8 lines
168 B
Lua
function Image (img)
|
|
-- get dimensions
|
|
local width, height = nil, nil -- implement
|
|
img.attributes.width = width
|
|
img.attributes.height = height
|
|
return img
|
|
end
|