use order number as marker for ordered list

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-04-30 10:48:12 +07:00
parent 2a3479f30d
commit c0d9f9f8c6

View File

@ -58,6 +58,11 @@ namespace osu.Game.Graphics.Containers.Markdown
private string createTextMarker()
{
if (isOrdered)
{
return $"{order}.";
}
switch (level)
{
case 1: