mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 02:11:05 +08:00
22 lines
721 B
C#
22 lines
721 B
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;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown.Extensions
|
|
{
|
|
public static class OsuMarkdownExtensions
|
|
{
|
|
/// <summary>
|
|
/// Uses the block attributes extension.
|
|
/// </summary>
|
|
/// <param name="pipeline">The pipeline.</param>
|
|
/// <returns>The modified pipeline.</returns>
|
|
public static MarkdownPipelineBuilder UseBlockAttributes(this MarkdownPipelineBuilder pipeline)
|
|
{
|
|
pipeline.Extensions.AddIfNotAlready<BlockAttributeExtension>();
|
|
return pipeline;
|
|
}
|
|
}
|
|
}
|