From 33ac4ccc7655ce9965663b0d582289548e2eb003 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Sat, 27 Jun 2015 10:03:17 +0000 Subject: [PATCH] Rebuild website --- docs/jsx-gotchas.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/jsx-gotchas.html b/docs/jsx-gotchas.html index e93b4647cc..cf461bee88 100644 --- a/docs/jsx-gotchas.html +++ b/docs/jsx-gotchas.html @@ -419,7 +419,7 @@
// Bad: It displays "First · Second"
 <div>{'First &middot; Second'}</div>
 
-

There are various ways to work-around this issue. The easiest one is to write unicode character directly in Javascript. You need to make sure that the file is saved as UTF-8 and that the proper UTF-8 directives are set so the browser will display it correctly.

+

There are various ways to work-around this issue. The easiest one is to write unicode character directly in JavaScript. You need to make sure that the file is saved as UTF-8 and that the proper UTF-8 directives are set so the browser will display it correctly.

<div>{'First ยท Second'}</div>
 

A safer alternative is to find the unicode number corresponding to the entity and use it inside of a JavaScript string.