UniversalMarkdown.Parse.Elements.StrikethroughTextInline.AddTripChars C# (CSharp) Method

AddTripChars() static private method

Returns the chars that if found means we might have a match.
static private AddTripChars ( List tripCharHelpers ) : void
tripCharHelpers List
return void
        internal static void AddTripChars(List<Common.InlineTripCharHelper> tripCharHelpers)
        {
            tripCharHelpers.Add(new Common.InlineTripCharHelper() { FirstChar = '~', Method = Common.InlineParseMethod.Strikethrough });
        }