1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 19:00:30 +08:00

add xmldoc for GetTextMarker

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-05-06 05:32:07 +07:00
Unverified
parent 9bb80492c5
commit 4567abe3db
@@ -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)