Removed Format.Code's escape parameter

This commit is contained in:
RogueException
2015-10-19 05:58:09 -03:00
parent c2917c039f
commit 3f14650a28

View File

@@ -102,12 +102,12 @@ namespace Discord
=> escape ? $"~~{Escape(text)}~~" : $"~~{text}~~"; => escape ? $"~~{Escape(text)}~~" : $"~~{text}~~";
/// <summary> Returns a markdown-formatted string with strikeout formatting, optionally escaping the contents. </summary> /// <summary> Returns a markdown-formatted string with strikeout formatting, optionally escaping the contents. </summary>
public static string Code(string text, string language = null, bool escape = true) public static string Code(string text, string language = null)
{ {
if (language != null || text.Contains("\n")) if (language != null || text.Contains("\n"))
return $"```{language ?? ""}\n{(escape ? Escape(text) : text)}\n```"; return $"```{language ?? ""}\n{text}\n```";
else else
return $"`{(escape ? Escape(text) : text)}`"; return $"`{text}`";
} }
/// <summary> Returns a markdown-formatted string with multiple formatting, optionally escaping the contents. </summary> /// <summary> Returns a markdown-formatted string with multiple formatting, optionally escaping the contents. </summary>
@@ -121,7 +121,7 @@ namespace Discord
if (italics) result = Italics(result, false); if (italics) result = Italics(result, false);
if (underline) result = Underline(result, false); if (underline) result = Underline(result, false);
if (strikeout) result = Strikeout(result, false); if (strikeout) result = Strikeout(result, false);
if (code) result = Code(result, codeLanguage, false); if (code) result = Code(result, codeLanguage);
return result; return result;
} }
} }