mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 03:47:26 +08:00
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using Markdig.Extensions.Footnotes;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Framework.Graphics.Containers.Markdown.Footnotes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown.Footnotes
|
|
{
|
|
public partial class OsuMarkdownFootnote : MarkdownFootnote
|
|
{
|
|
public OsuMarkdownFootnote(Footnote footnote)
|
|
: base(footnote)
|
|
{
|
|
}
|
|
|
|
public override SpriteText CreateOrderMarker(int order) => CreateSpriteText().With(marker =>
|
|
{
|
|
marker.Text = LocalisableString.Format("{0}.", order);
|
|
});
|
|
|
|
public override MarkdownTextFlowContainer CreateTextFlow() => base.CreateTextFlow().With(textFlow =>
|
|
{
|
|
textFlow.Margin = new MarginPadding { Left = 30 };
|
|
});
|
|
}
|
|
}
|