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
Updated by Oleksandr Ivanov 11 months ago
- Status changed from New to In Progress
Updated by Oleksandr Ivanov 11 months ago
- Due date set to 02/02/2024
- Assignee set to Oleksandr Ivanov
- Target version set to 0.0.7
- Estimated time set to 0:30 h
Updated by Oleksandr Ivanov 11 months ago ยท Edited
- Status changed from In Progress to Closed
Fixed in (commit:a049085f6490397d660ea8938d4d000bd797a719)
Updated by Oleksandr Ivanov 11 months ago
- Status changed from Closed to Feedback
Updated by Oleksandr Ivanov 11 months ago
- Status changed from Feedback to Closed
Actions