1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2026-05-15 17:10:18 +00:00

Améliorations listes

This commit is contained in:
Yan Maniez 2018-07-20 13:29:52 +02:00
parent 0482f7ff2a
commit 47172f6f38
4 changed files with 237 additions and 175 deletions

View file

@ -101,8 +101,10 @@ namespace AideDeJeuLib
}
else
{
int index = 0;
foreach (var inblock in listBlock)
{
index++;
if (inblock is Markdig.Syntax.ListItemBlock)
{
var listItemBlock = inblock as Markdig.Syntax.ListItemBlock;
@ -112,7 +114,14 @@ namespace AideDeJeuLib
if (ininblock is Markdig.Syntax.ParagraphBlock)
{
var paragraphBlock = ininblock as Markdig.Syntax.ParagraphBlock;
this.Text += listBlock.BulletType + " " + paragraphBlock.ToMarkdownString() + "\n";
if (listBlock.IsOrdered)
{
this.Text += $"{index}. " + paragraphBlock.ToMarkdownString() + "";
}
else
{
this.Text += listBlock.BulletType + " " + paragraphBlock.ToMarkdownString() + "";
}
}
else if (ininblock is ListBlock)
{