mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 02:59:48 +08:00
35 lines
1.6 KiB
C#
35 lines
1.6 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;
|
|
using Markdig.Extensions.GenericAttributes;
|
|
using Markdig.Renderers;
|
|
using Markdig.Syntax;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown.Extensions
|
|
{
|
|
/// <summary>
|
|
/// A variant of <see cref="Markdig.Extensions.GenericAttributes.GenericAttributesExtension"/>
|
|
/// which only handles generic attributes in the current markdown <see cref="Block"/> and ignores inline generic attributes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// For rationale, see implementation of <see cref="Setup(Markdig.MarkdownPipelineBuilder)"/>.
|
|
/// </remarks>
|
|
public class BlockAttributeExtension : IMarkdownExtension
|
|
{
|
|
private readonly GenericAttributesExtension genericAttributesExtension = new GenericAttributesExtension();
|
|
|
|
public void Setup(MarkdownPipelineBuilder pipeline)
|
|
{
|
|
genericAttributesExtension.Setup(pipeline);
|
|
|
|
// GenericAttributesExtension registers a GenericAttributesParser in pipeline.InlineParsers.
|
|
// this conflicts with the CustomContainerExtension, leading to some custom containers (e.g. flags) not displaying.
|
|
// as a workaround, remove the inline parser here before it can do damage.
|
|
pipeline.InlineParsers.RemoveAll(parser => parser is GenericAttributesParser);
|
|
}
|
|
|
|
public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer) => genericAttributesExtension.Setup(pipeline, renderer);
|
|
}
|
|
}
|