diff --git a/docs/02-displaying-data.md b/docs/02-displaying-data.md index 72954a59..9e7b9fbf 100644 --- a/docs/02-displaying-data.md +++ b/docs/02-displaying-data.md @@ -84,8 +84,8 @@ We've found that the best solution for this problem is to generate markup direct **JSX lets you write JavaScript function calls with HTML syntax.** To generate a link in React using pure JavaScript you'd write: `React.DOM.a({href: 'http://facebook.github.io/react/'}, 'Hello React!')`. With JSX this becomes `Hello React!`. We've found this has made building React apps easier and designers tend to prefer the syntax, but everyone has their own workflow, so **JSX is not required to use React.** -JSX is very small; the "hello, world" example above uses every feature of JSX. To learn more about it, see [JSX in depth](./02.1-jsx-in-depth.html). Or see the transform in action in [our live JSX compiler](/react/jsx-compiler.html). +JSX is very small; the "hello, world" example above uses every feature of JSX. To learn more about it, see [JSX in depth](./jsx-in-depth.html). Or see the transform in action in [our live JSX compiler](/react/jsx-compiler.html). -JSX is similar to HTML, but not exactly the same. See [JSX gotchas](./02.2-jsx-gotchas.html) for some key differences. +JSX is similar to HTML, but not exactly the same. See [JSX gotchas](./jsx-gotchas.html) for some key differences. The easiest way to get started with JSX is to use the in-browser `JSXTransformer`. We strongly recommend that you don't use this in production. You can precompile your code using our command-line [react-tools](http://npmjs.org/package/react-tools) package. diff --git a/docs/09-reference.md b/docs/09-reference.md index 64a1fb82..83c787f2 100644 --- a/docs/09-reference.md +++ b/docs/09-reference.md @@ -18,7 +18,7 @@ prev: tooling-integration.html ### Sample Code -* We've included [a step-by-step comment box tutorial](./tutorial.md). +* We've included [a step-by-step comment box tutorial](./tutorial.html). * [The React starter kit](/react/downloads.html) includes several examples which you can [view online in our GitHub repository](https://github.com/facebook/react/tree/master/examples/). * [reactapp](https://github.com/jordwalke/reactapp) is a simple app template to get you up-and-running quickly with React. * [React one-hour email](https://github.com/petehunt/react-one-hour-email/commits/master) goes step-by-step from a static HTML mock to an interactive email reader (written in just one hour!)