Doraku / DefaultDocumentation

Create a simple markdown documentation from the Visual Studio xml one.
MIT No Attribution
157 stars 26 forks source link

Table issue in Kramdown #92

Closed IdkGoodName closed 2 years ago

IdkGoodName commented 2 years ago

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).

Doraku commented 2 years ago

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
IdkGoodName commented 2 years ago

I mean like the second variant.