private TouchstoneReader(TextReader reader, TouchstoneReaderSettings settings)
        {
            this.settings = settings ?? new TouchstoneReaderSettings();
            this.reader   = reader;
            Options       = new TouchstoneOptions();
            Keywords      = new TouchstoneKeywords();

            coreReader = TouchstoneReaderCore.Create(this);
        }
 private static Dictionary <string, string> FormatKeywords(TouchstoneKeywords keywords)
 {
     throw new NotImplementedException();
 }