Make yaml line strings verbatim

This commit is contained in:
Joseph Madamba
2023-03-11 21:35:52 -08:00
parent e327993d11
commit 0cf69a1084

View File

@ -30,11 +30,11 @@ namespace osu.Game.Overlays.Wiki.Markdown
{
switch (line.ToString())
{
case "outdated: true":
case @"outdated: true":
isOutdated = true;
break;
case "needs_cleanup: true":
case @"needs_cleanup: true":
needsCleanup = true;
break;
}