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 169B

12345678910
  1. module.exports = {
  2. OPAREN: '(',
  3. CPAREN: ')',
  4. KEYWORD: 'keyword',
  5. QUOTE: '"',
  6. LITERAL: 'literal',
  7. ATTRIBUTE: 'attribute',
  8. SYMBOL: 'symbol',
  9. EOF: 'EOF',
  10. }