Doraku / DefaultDocumentation

Create a simple markdown documentation from the Visual Studio xml one.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table issue in Kramdown

IdkGoodName opened this issue · comments

DefaultDocumentation seems to create tables like this:

Paragraph 1
|This|Is|
|-|-|
|Table|1|
Paragraph 2

Without adding second newline before or after the table, which causes it to not be rendered in Kramdown(Markdown renderer/processor Jekyll uses).

When you say before or after, that means this:

Paragraph 1

|This|Is|
|-|-|
|Table|1|
Paragraph 2

works as expected? No need for a second line break like this?

Paragraph 1

|This|Is|
|-|-|
|Table|1|

Paragraph 2

I mean like the second variant.