From c06f404a633997102b5d5e60300c27814f527611 Mon Sep 17 00:00:00 2001 From: syranide Date: Fri, 29 Aug 2014 10:08:12 +0200 Subject: [PATCH] JSXTextCharacter may not be '>' or '}' either --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 26e8cc5..05db11c 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ JSXText : - JSXTextCharacter JSXTextopt JSXTextCharacter : -- SourceCharacter __but not one of `{` or `<`__ +- SourceCharacter __but not one of `{`, `<`, `>` or `}`__ __Whitespace and Comments__ @@ -135,7 +135,7 @@ Transpilers These are a set of transpilers that all conform to the JSX syntax but use different semantics on the output: - [jsxdom](https://github.com/vjeux/jsxdom): Create DOM elements using JSX. -- [Mercury JSX](https://github.com/Raynos/mercury-jsx): Create virtual-dom VNodes or VText using JSX. +- [Mercury JSX](https://github.com/Raynos/mercury-jsx): Create virtual-dom VNodes or VText using JSX. - [React JSX](http://facebook.github.io/react/docs/jsx-in-depth.html): Create ReactElements using JSX. Why not Template Literals?