1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

add xmldoc for GetTextMarker

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-06 05:32:07 +07:00
parent 9bb80492c5
commit 4567abe3db
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -67,6 +67,12 @@ namespace osu.Game.Graphics.Containers.Markdown
AddInternal(marker);
}
/// <summary>
/// Get text marker based on <paramref name="level"/> and <paramref name="isOrdered"/>.
/// </summary>
/// <param name="level">The markdown level of current list item.</param>
/// <param name="isOrdered">Is true if the list item is an ordered list.</param>
/// <returns></returns>
protected virtual string GetTextMarker(int level, bool isOrdered)
{
if (isOrdered)