mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-31 23:45:39 +00:00
Correctif tables
This commit is contained in:
parent
348b1dd107
commit
dc97c03d4d
1 changed files with 2 additions and 2 deletions
|
|
@ -188,7 +188,7 @@ namespace AideDeJeu.Tools
|
|||
else if (block is Markdig.Extensions.Tables.Table)
|
||||
{
|
||||
var tableBlock = block as Markdig.Extensions.Tables.Table;
|
||||
spell.DescriptionHtml += "\n\n" + tableBlock.ToMarkdownString().Replace("\n","") + "\n\n";
|
||||
spell.DescriptionHtml += "\n\n" + tableBlock.ToMarkdownString() + "\n\n";
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -559,7 +559,7 @@ namespace AideDeJeu.Tools
|
|||
{
|
||||
foreach(Markdig.Syntax.ParagraphBlock block in cell)
|
||||
{
|
||||
line += block.ToMarkdownString();
|
||||
line += block.ToMarkdownString().Replace("\n", "");
|
||||
}
|
||||
line += "|";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue