Update Format.cs
removed comma and space
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
public static class Format
|
public static class Format
|
||||||
{
|
{
|
||||||
// Characters which need escaping
|
// Characters which need escaping
|
||||||
private static string[] SensitiveCharacters = { "\\", "*", "_", "~", "`", };
|
private static string[] SensitiveCharacters = { "\\", "*", "_", "~", "`" };
|
||||||
|
|
||||||
/// <summary> Returns a markdown-formatted string with bold formatting. </summary>
|
/// <summary> Returns a markdown-formatted string with bold formatting. </summary>
|
||||||
public static string Bold(string text) => $"**{text}**";
|
public static string Bold(string text) => $"**{text}**";
|
||||||
|
|||||||
Reference in New Issue
Block a user