using System.Collections.Generic; using System.Linq; namespace CsvHelper.DocsGenerator.Formatters { public static class Symbols { public static readonly Dictionary Html = new Dictionary { { "<", "<" }, { ">", ">" }, { "[", "[" }, { "]", "]" } }; public static readonly Dictionary Code = new Dictionary(Html.Select(pair => new KeyValuePair(pair.Key, pair.Key))); } }