/// <summary> /// Initializes a new instance of the Lexer class with the specified /// TextReader to lex. /// </summary> /// <param name="source">A TextReader to lex.</param> internal PageTextHtmlCmdLexer(string htmlcmd) { // read the file contents reader = new CharReader(htmlcmd); }