This commit is contained in:
RogueException
2016-10-08 21:53:49 -03:00
parent 7326aac468
commit 3930e1147c

View File

@@ -14,7 +14,7 @@
/// <summary> Returns a markdown-formatted string with strikethrough formatting. </summary>
public static string Strikethrough(string text) => $"~~{text}~~";
/// <summary> Returns a markdown-formatted string with strikeout formatting. </summary>
/// <summary> Returns a markdown-formatted string with codeblock formatting. </summary>
public static string Code(string text, string language = null)
{
if (language != null || text.Contains("\n"))