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 [BackgroundDependencyLoader] 35 private void load() 36 { 37 - TextFlowContainer textFlowContainer; 38 InternalChildren = new[] 39 { 40 CreateBackground(), ··· 42 }; 43 44 foreach (var line in fencedCodeBlock.Lines.Lines) 45 - textFlowContainer.AddParagraph(CustomizableTextContainer.Escape(line.ToString())); 46 } 47 48 protected virtual Drawable CreateBackground() => new Box
··· 34 [BackgroundDependencyLoader] 35 private void load() 36 { 37 + MarkdownTextFlowContainer textFlowContainer; 38 InternalChildren = new[] 39 { 40 CreateBackground(), ··· 42 }; 43 44 foreach (var line in fencedCodeBlock.Lines.Lines) 45 + textFlowContainer.AddParagraph(line.ToString()); 46 } 47 48 protected virtual Drawable CreateBackground() => new Box