Update Format.cs

This commit is contained in:
Confruggy
2017-01-22 22:33:03 +01:00
committed by GitHub
parent 236304c1a4
commit c1e445d8ce

View File

@@ -3,7 +3,7 @@
public static class Format
{
// Characters which need escaping
private static string[] SensitiveCharacters = { "*", "_", "~", "`", "\\" };
private static string[] SensitiveCharacters = { "\\", "*", "_", "~", "`", };
/// <summary> Returns a markdown-formatted string with bold formatting. </summary>
public static string Bold(string text) => $"**{text}**";