Commit 2090ed24 authored by Serafino's avatar Serafino
Browse files

Modified for debugging

parent 9c54c2b0
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -112,12 +112,14 @@ if FORMAT:match 'html' then
        el.content = Run(el)
        --search for paragraph style
        el = Style(el)
        if type(e) == "table" then
        if type(el) == "table" then
            for key, value in pairs(el) do
                print(key .. " = " .. value)
            end
        else
        elseif type(el) == "userdata" then
            el = Reference(el)
        else
            print(type(el))
        end
        return el        
    end