Actions
Bug #24
closedMarkdown table at the end of specification is not rendered
Description
During implementation of the Feature #21 the following was observed:
If a specification finishes with a Markdown table this table is not rendered in the html version.
How to fix - the following block is missed after parsing loop in the specification class:
# Finalize non-closed elements
if @tempMdTable
    self.docItems.append(@tempMdTable)
        @tempMdTable = nil
    end
    if @tempMdList
        self.docItems.append(@tempMdList)
        @tempMdList = nil
    end
Actions