A templating language that looks like Lisp and compiles to HTML
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tokenTypes.js 239B

12345678910111213
  1. module.exports = {
  2. OPAREN: '(',
  3. CPAREN: ')',
  4. KEYWORD: 'keyword',
  5. QUOTE: '"',
  6. LITERAL: 'literal',
  7. ATTRIBUTE: 'attribute',
  8. SYMBOL: 'symbol',
  9. NUMBER: 'number',
  10. BOOLEAN: 'boolean',
  11. IDENTIFIER: 'identifier',
  12. EOF: 'EOF',
  13. }