tangled
alpha
login
or
join now
keii.dev
/
osu-framework
0
fork
atom
A game framework written with osu! in mind.
0
fork
atom
overview
issues
pulls
pipelines
Fix wrong type being used
smoogipoo
6 years ago
0dfaf54f
2104466c
+2
-2
1 changed file
expand all
collapse all
unified
split
osu.Framework
Graphics
Containers
Markdown
MarkdownFencedCodeBlock.cs
+2
-2
osu.Framework/Graphics/Containers/Markdown/MarkdownFencedCodeBlock.cs
···
34
34
[BackgroundDependencyLoader]
35
35
private void load()
36
36
{
37
37
-
TextFlowContainer textFlowContainer;
37
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
45
-
textFlowContainer.AddParagraph(CustomizableTextContainer.Escape(line.ToString()));
45
45
+
textFlowContainer.AddParagraph(line.ToString());
46
46
}
47
47
48
48
protected virtual Drawable CreateBackground() => new Box