1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00

Ajout espaces table speech

This commit is contained in:
Yan Maniez 2019-09-23 13:50:12 +02:00
parent 1c92e3436f
commit 1f7e9865c1

View file

@ -226,10 +226,11 @@ namespace AideDeJeu.ViewModels
{ {
var par = blockpar as Markdig.Syntax.ParagraphBlock; var par = blockpar as Markdig.Syntax.ParagraphBlock;
var blockPhrase = CreateFormatted(par.Inline); var blockPhrase = CreateFormatted(par.Inline);
phrase += blockPhrase; phrase += blockPhrase + " ";
} }
table += phrase; table += phrase + " ";
} }
table += "\n";
} }
return table; return table;