Skip to content

Commit 64de0a9

Browse files
committed
bugfix appveyor build (fails cause of Debug.Assert compare of xshd filename and name inside)
1 parent 4655eb6 commit 64de0a9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ICSharpCode.AvalonEdit/Highlighting/Resources/MarkDown-with-FontSizeMode.xshd renamed to ICSharpCode.AvalonEdit/Highlighting/Resources/MarkDownWithFontSize-Mode.xshd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<SyntaxDefinition name="MarkDown-with-FontSize" extensions=".md" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
2+
<SyntaxDefinition name="MarkDownWithFontSize" extensions=".md" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
33
<Color name="Heading1" foreground="Maroon" fontSize="30" exampleText="# Title #" />
44
<Color name="Heading2" foreground="Maroon" fontSize="27" exampleText="# Title #" />
55
<Color name="Heading3" foreground="Maroon" fontSize="24" exampleText="# Title #" />

ICSharpCode.AvalonEdit/Highlighting/Resources/Resources.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ internal static void RegisterBuiltInHighlightings(HighlightingManager.DefaultHig
6060
".xft;.map;.wsdl;.disco;.ps1xml;.nuspec").Split(';'),
6161
"XML-Mode.xshd");
6262
hlm.RegisterHighlighting("MarkDown", new[] { ".md" }, "MarkDown-Mode.xshd");
63-
hlm.RegisterHighlighting("MarkDownWithFontSize", new[] { ".md" }, "MarkDown-with-FontSizeMode.xshd");
63+
hlm.RegisterHighlighting("MarkDownWithFontSize", new[] { ".md" }, "MarkDownWithFontSize-Mode.xshd");
6464
hlm.RegisterHighlighting("Json", new[] { ".json" }, "Json.xshd");
6565
}
6666
}

0 commit comments

Comments
 (0)