A game framework written with osu! in mind.

Fix wrong type being used

+2 -2
+2 -2
osu.Framework/Graphics/Containers/Markdown/MarkdownFencedCodeBlock.cs
··· 34 34 [BackgroundDependencyLoader] 35 35 private void load() 36 36 { 37 - TextFlowContainer textFlowContainer; 37 + MarkdownTextFlowContainer textFlowContainer; 38 38 InternalChildren = new[] 39 39 { 40 40 CreateBackground(), ··· 42 42 }; 43 43 44 44 foreach (var line in fencedCodeBlock.Lines.Lines) 45 - textFlowContainer.AddParagraph(CustomizableTextContainer.Escape(line.ToString())); 45 + textFlowContainer.AddParagraph(line.ToString()); 46 46 } 47 47 48 48 protected virtual Drawable CreateBackground() => new Box