Commit 135f6e41 authored by Marco Cavalli's avatar Marco Cavalli
Browse files

fix: remove unnecessary check for single content in Emph function

parent 3c6da4be
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -338,9 +338,6 @@ if FORMAT:match 'html' then

    function Emph(el)
        el = Linking(el)
        if #el.content == 1 then
            return el.content[1]
        end
        return el
    end