Merge pull request #167 from chrispy-snps/chrispy/table-caption-blank-line

insert a blank line between table caption, table content
This commit is contained in:
Chris Papademetrious
2025-01-18 19:09:24 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -444,7 +444,7 @@ class MarkdownConverter(object):
return '\n\n' + text + '\n'
def convert_caption(self, el, text, convert_as_inline):
return text + '\n'
return text + '\n\n'
def convert_figcaption(self, el, text, convert_as_inline):
return '\n\n' + text + '\n\n'