I use additionalProperties to define a dictionary as suggested here.
When the dictionary value is object, the resulting markdown will have rows for summaryAsHTML , descriptionAsHTML, generatedExample with empty cells in Type and Description columns. This somehow breaks the HTML parsing of the table.
The reason is that the template doesn't iterate over additionalProperties and thus you don't get them. It would be just a matter of fixing the Markdown template.
I use
additionalProperties
to define a dictionary as suggested here.When the dictionary value is object, the resulting markdown will have rows for
summaryAsHTML
,descriptionAsHTML
,generatedExample
with empty cells in Type and Description columns. This somehow breaks the HTML parsing of the table.Any suggestions?