Ejemplo n.º 1
0
        //
        // A catch-all word, such as:
        //
        //     black border-collapse
        //
        public Keyword Keyword(Parser parser)
        {
            var index = parser.Tokenizer.Location.Index;

            var k = parser.Tokenizer.Match(@"[A-Za-z-]+");

            if (k)
            {
                return(NodeProvider.Keyword(k.Value, index));
            }

            return(null);
        }