Browse Source

Upgrade to Jekyll 3

Full list of changes is at https://jekyllrb.com/docs/upgrading/2-to-3/. The tl;dr of it is:
 - Relative permalinks were removed, so all the files in the `docs` subdirectory need their permalink to be prefixed with `docs/`
 - `post` and `page` types were renamed to `posts` and `pages` respectively
 - `jekyll-paginate`, `pygments` and `redcarpet` are all now optional, so I needed to explicitly add it to the Gemfile. Jekyll now uses `rouge` rather than `pygments` for syntax highlighting, but rouge does not support highlighting individual lines (`hl_lines`) so we need to continue using Pygments.
 - Layout metadata (eg. `sectionid`) is now on a `layout` variable rather than `page`

Tested the following pages and confirmed that they all work:
 - "Docs" link (getting started page): http://127.0.0.1:4000/react/docs/getting-started.html
 - Downloads: http://127.0.0.1:4000/react/downloads.html
 - Tutorial: http://127.0.0.1:4000/react/docs/tutorial.html
 - A few pages under the "docs" subdirectory, to confirm they're working properly:
    - http://127.0.0.1:4000/react/docs/addons.html
 - http://127.0.0.1:4000/react/docs/why-react.html
 - http://127.0.0.1:4000/react/docs/create-fragment.html
 - A few tips:
    - http://127.0.0.1:4000/react/tips/false-in-jsx.html
 - http://127.0.0.1:4000/react/tips/style-props-value-px.html
 - Non-English versions of the page:
    - http://127.0.0.1:4000/react/docs/getting-started-it-IT.html
    - http://127.0.0.1:4000/react/docs/getting-started-ja-JP.html
main
Daniel Lo Nigro 9 years ago
committed by Paul O’Shannessy
parent
commit
d457201862
  1. 16
      Gemfile
  2. 102
      Gemfile.lock
  3. 6
      _config.yml
  4. 4
      _layouts/default.html
  5. 2
      _plugins/authors.rb
  6. 2
      docs/01-why-react.de-DE.md
  7. 2
      docs/01-why-react.it-IT.md
  8. 2
      docs/01-why-react.ja-JP.md
  9. 2
      docs/01-why-react.ko-KR.md
  10. 2
      docs/01-why-react.md
  11. 2
      docs/01-why-react.zh-CN.md
  12. 2
      docs/02-displaying-data.it-IT.md
  13. 2
      docs/02-displaying-data.ja-JP.md
  14. 2
      docs/02-displaying-data.ko-KR.md
  15. 2
      docs/02-displaying-data.md
  16. 2
      docs/02-displaying-data.zh-CN.md
  17. 2
      docs/02.1-jsx-in-depth.it-IT.md
  18. 2
      docs/02.1-jsx-in-depth.ja-JP.md
  19. 2
      docs/02.1-jsx-in-depth.ko-KR.md
  20. 2
      docs/02.1-jsx-in-depth.md
  21. 2
      docs/02.1-jsx-in-depth.zh-CN.md
  22. 2
      docs/02.2-jsx-spread.it-IT.md
  23. 2
      docs/02.2-jsx-spread.ja-JP.md
  24. 2
      docs/02.2-jsx-spread.ko-KR.md
  25. 2
      docs/02.2-jsx-spread.md
  26. 2
      docs/02.2-jsx-spread.zh-CN.md
  27. 2
      docs/02.3-jsx-gotchas.it-IT.md
  28. 2
      docs/02.3-jsx-gotchas.ja-JP.md
  29. 2
      docs/02.3-jsx-gotchas.ko-KR.md
  30. 2
      docs/02.3-jsx-gotchas.md
  31. 2
      docs/02.3-jsx-gotchas.zh-CN.md
  32. 2
      docs/03-interactivity-and-dynamic-uis.it-IT.md
  33. 2
      docs/03-interactivity-and-dynamic-uis.ja-JP.md
  34. 2
      docs/03-interactivity-and-dynamic-uis.ko-KR.md
  35. 2
      docs/03-interactivity-and-dynamic-uis.md
  36. 2
      docs/03-interactivity-and-dynamic-uis.zh-CN.md
  37. 2
      docs/04-multiple-components.it-IT.md
  38. 2
      docs/04-multiple-components.ja-JP.md
  39. 2
      docs/04-multiple-components.ko-KR.md
  40. 2
      docs/04-multiple-components.md
  41. 2
      docs/04-multiple-components.zh-CN.md
  42. 2
      docs/05-reusable-components.it-IT.md
  43. 2
      docs/05-reusable-components.ja-JP.md
  44. 2
      docs/05-reusable-components.ko-KR.md
  45. 2
      docs/05-reusable-components.md
  46. 2
      docs/05-reusable-components.zh-CN.md
  47. 2
      docs/06-transferring-props.it-IT.md
  48. 2
      docs/06-transferring-props.ja-JP.md
  49. 2
      docs/06-transferring-props.ko-KR.md
  50. 2
      docs/06-transferring-props.md
  51. 2
      docs/06-transferring-props.zh-CN.md
  52. 2
      docs/07-forms.it-IT.md
  53. 2
      docs/07-forms.ja-JP.md
  54. 2
      docs/07-forms.ko-KR.md
  55. 2
      docs/07-forms.md
  56. 2
      docs/07-forms.zh-CN.md
  57. 2
      docs/08-working-with-the-browser.it-IT.md
  58. 2
      docs/08-working-with-the-browser.ja-JP.md
  59. 2
      docs/08-working-with-the-browser.ko-KR.md
  60. 2
      docs/08-working-with-the-browser.md
  61. 2
      docs/08-working-with-the-browser.zh-CN.md
  62. 2
      docs/08.1-more-about-refs.it-IT.md
  63. 2
      docs/08.1-more-about-refs.ja-JP.md
  64. 2
      docs/08.1-more-about-refs.ko-KR.md
  65. 2
      docs/08.1-more-about-refs.md
  66. 2
      docs/08.1-more-about-refs.zh-CN.md
  67. 2
      docs/09-tooling-integration.it-IT.md
  68. 2
      docs/09-tooling-integration.ja-JP.md
  69. 2
      docs/09-tooling-integration.ko-KR.md
  70. 2
      docs/09-tooling-integration.md
  71. 2
      docs/09-tooling-integration.zh-CN.md
  72. 2
      docs/09.1-language-tooling.md
  73. 2
      docs/09.2-package-management.md
  74. 2
      docs/09.3-environments.md
  75. 2
      docs/10-addons.it-IT.md
  76. 2
      docs/10-addons.ja-JP.md
  77. 2
      docs/10-addons.ko-KR.md
  78. 2
      docs/10-addons.md
  79. 2
      docs/10-addons.zh-CN.md
  80. 2
      docs/10.1-animation.it-IT.md
  81. 2
      docs/10.1-animation.ja-JP.md
  82. 2
      docs/10.1-animation.ko-KR.md
  83. 2
      docs/10.1-animation.md
  84. 2
      docs/10.1-animation.zh-CN.md
  85. 2
      docs/10.10-shallow-compare.md
  86. 2
      docs/10.10-shallow-compare.zh-CN.md
  87. 2
      docs/10.2-form-input-binding-sugar.it-IT.md
  88. 2
      docs/10.2-form-input-binding-sugar.ja-JP.md
  89. 2
      docs/10.2-form-input-binding-sugar.ko-KR.md
  90. 2
      docs/10.2-form-input-binding-sugar.md
  91. 2
      docs/10.2-form-input-binding-sugar.zh-CN.md
  92. 2
      docs/10.3-class-name-manipulation.it-IT.md
  93. 2
      docs/10.3-class-name-manipulation.ja-JP.md
  94. 2
      docs/10.3-class-name-manipulation.ko-KR.md
  95. 2
      docs/10.3-class-name-manipulation.md
  96. 2
      docs/10.3-class-name-manipulation.zh-CN.md
  97. 2
      docs/10.4-test-utils.it-IT.md
  98. 2
      docs/10.4-test-utils.ja-JP.md
  99. 2
      docs/10.4-test-utils.ko-KR.md
  100. 2
      docs/10.4-test-utils.md

16
Gemfile

@ -3,11 +3,12 @@ source 'https://rubygems.org'
gem 'rake'
# jekyll, which builds it all
# 2.0 includes sass processing
gem 'jekyll', '~>2.0'
# 3.0 includes sass processing
gem 'jekyll', '~>3.1'
# Auto redirect pages
# Jekyll extensions
gem 'jekyll-redirect-from'
gem 'jekyll-paginate'
# JSON
gem 'json'
@ -17,3 +18,12 @@ gem 'rb-fsevent'
# For markdown header cleanup
gem 'sanitize', '~>2.0'
# Markdown
gem 'redcarpet'
# Syntax highlighting
gem 'pygments.rb'
# Avoid having to poll for changes on Windows
gem 'wdm', '>= 0.1.0' if Gem.win_platform?

102
Gemfile.lock

@ -1,85 +1,69 @@
GEM
remote: https://rubygems.org/
specs:
blankslate (2.1.2.4)
celluloid (0.15.2)
timers (~> 1.1.0)
classifier (1.3.4)
fast-stemmer (>= 1.0.0)
coffee-script (2.3.0)
coffee-script-source
execjs
coffee-script-source (1.7.1)
colorator (0.1)
execjs (2.2.1)
fast-stemmer (1.0.2)
ffi (1.9.3)
jekyll (2.2.0)
classifier (~> 1.3)
ffi (1.9.10)
ffi (1.9.10-x64-mingw32)
jekyll (3.1.3)
colorator (~> 0.1)
jekyll-coffeescript (~> 1.0)
jekyll-gist (~> 1.0)
jekyll-paginate (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 2.6.1)
liquid (~> 3.0)
mercenary (~> 0.3.3)
pygments.rb (~> 0.6.0)
redcarpet (~> 3.1)
rouge (~> 1.7)
safe_yaml (~> 1.0)
toml (~> 0.1.0)
jekyll-coffeescript (1.0.0)
coffee-script (~> 2.2)
jekyll-gist (1.1.0)
jekyll-paginate (1.0.0)
jekyll-redirect-from (0.5.0)
jekyll (~> 2.0)
jekyll-sass-converter (1.2.0)
sass (~> 3.2)
jekyll-watch (1.1.0)
listen (~> 2.7)
json (1.8.1)
kramdown (1.4.1)
liquid (2.6.1)
listen (2.7.9)
celluloid (>= 0.15.2)
jekyll-paginate (1.1.0)
jekyll-redirect-from (0.10.0)
jekyll (>= 2.0)
jekyll-sass-converter (1.4.0)
sass (~> 3.4)
jekyll-watch (1.3.1)
listen (~> 3.0)
json (1.8.3)
kramdown (1.10.0)
liquid (3.0.6)
listen (3.1.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
mercenary (0.3.4)
mini_portile (0.6.0)
nokogiri (1.6.3.1)
mini_portile (= 0.6.0)
parslet (1.5.0)
blankslate (~> 2.0)
posix-spawn (0.3.9)
pygments.rb (0.6.0)
rb-inotify (>= 0.9.7)
mercenary (0.3.6)
mini_portile2 (2.0.0)
nokogiri (1.6.7.2)
mini_portile2 (~> 2.0.0.rc2)
nokogiri (1.6.7.2-x64-mingw32)
mini_portile2 (~> 2.0.0.rc2)
posix-spawn (0.3.11)
pygments.rb (0.6.3)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rake (10.3.2)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
yajl-ruby (~> 1.2.0)
rake (11.1.2)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
redcarpet (3.1.2)
redcarpet (3.3.4)
rouge (1.10.1)
safe_yaml (1.0.4)
sanitize (2.0.6)
sanitize (2.1.0)
nokogiri (>= 1.4.4)
sass (3.3.14)
timers (1.1.0)
toml (0.1.1)
parslet (~> 1.5.0)
yajl-ruby (1.1.0)
sass (3.4.22)
wdm (0.1.1)
yajl-ruby (1.2.1)
PLATFORMS
ruby
x64-mingw32
DEPENDENCIES
jekyll (~> 2.0)
jekyll (~> 3.1)
jekyll-paginate
jekyll-redirect-from
json
pygments.rb
rake
rb-fsevent
redcarpet
sanitize (~> 2.0)
wdm (>= 0.1.0)
BUNDLED WITH
1.10.1
1.11.2

6
_config.yml

@ -5,19 +5,18 @@ url: https://facebook.github.io
baseurl: "/react"
permalink: "/blog/:year/:month/:day/:title.html"
paginate_path: "/blog/page:num/"
relative_permalinks: true
paginate: 5
timezone: America/Los_Angeles
highlighter: pygments
defaults:
- scope:
path: ''
type: post
type: posts
values:
layout: post
- scope:
path: docs
type: page
type: pages
values:
layout: docs
exclude:
@ -36,6 +35,7 @@ sass:
sass_dir: _css
gems:
- jekyll-redirect-from
- jekyll-paginate
react_version: 15.2.1
react_hashes:
dev: g2900ZIpFKhyIsz+bnx4YDEfAISugYRU58ljeAgI8TZ0A0AkRLGUCN7OmjF16Cj+

4
_layouts/default.html

@ -50,10 +50,10 @@
React
</a>
<ul class="nav-site nav-site-internal">
<li><a href="/react/docs/getting-started.html"{% if page.sectionid == 'docs' or page.sectionid == 'tips' or page.sectionid == 'contributing' %} class="active"{% endif %}>Docs</a></li>
<li><a href="/react/docs/getting-started.html"{% if layout.sectionid == 'docs' or layout.sectionid == 'tips' or layout.sectionid == 'contributing' %} class="active"{% endif %}>Docs</a></li>
<li><a href="/react/support.html"{% if page.id == 'support' %} class="active"{% endif %}>Support</a></li>
<li><a href="/react/downloads.html"{% if page.id == 'downloads' %} class="active"{% endif %}>Download</a></li>
<li><a href="/react/blog/"{% if page.sectionid == 'blog' %} class="active"{% endif %}>Blog</a></li>
<li><a href="/react/blog/"{% if layout.sectionid == 'blog' %} class="active"{% endif %}>Blog</a></li>
<li>
<input id="algolia-doc-search" type="text" placeholder="Search docs..." />
</li>

2
_plugins/authors.rb

@ -6,7 +6,7 @@
module Authors
class Generator < Jekyll::Generator
def generate(site)
site.posts.each do |post|
site.posts.docs.each do |post|
authors = []
if post['author'].kind_of?(Array)
for author in post['author']

2
docs/01-why-react.de-DE.md

@ -1,7 +1,7 @@
---
id: why-react-de-DE
title: Warum React?
permalink: why-react-de-DE.html
permalink: docs/why-react-de-DE.html
---
React ist eine JavaScript-Bibliothek von Facebook und Instagram für Benutzeroberflächen. Man kann sich React als das **V** in **[MVC](https://de.wikipedia.org/wiki/Model_View_Controller)** vorstellen.

2
docs/01-why-react.it-IT.md

@ -1,7 +1,7 @@
---
id: why-react-it-IT
title: Perché React?
permalink: why-react-it-IT.html
permalink: docs/why-react-it-IT.html
next: displaying-data-it-IT.html
---
React è una libreria JavaScript per creare interfacce utente scritta da Facebook e Instagram. A molti piace pensare a React come alla **V** di **[MVC](https://it.wikipedia.org/wiki/Model-View-Controller)**.

2
docs/01-why-react.ja-JP.md

@ -1,7 +1,7 @@
---
id: why-react-ja-JP
title: なぜReactを使うのでしょうか?
permalink: why-react-ja-JP.html
permalink: docs/why-react-ja-JP.html
next: displaying-data-ja-JP.html
---

2
docs/01-why-react.ko-KR.md

@ -1,7 +1,7 @@
---
id: why-react-ko-KR
title: 왜 React인가?
permalink: why-react-ko-KR.html
permalink: docs/why-react-ko-KR.html
next: displaying-data-ko-KR.html
---

2
docs/01-why-react.md

@ -1,7 +1,7 @@
---
id: why-react
title: Why React?
permalink: why-react.html
permalink: docs/why-react.html
next: displaying-data.html
---
React is a JavaScript library for creating user interfaces by Facebook and Instagram. Many people choose to think of React as the **V** in **[MVC](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)**.

2
docs/01-why-react.zh-CN.md

@ -1,7 +1,7 @@
---
id: why-react-zh-CN
title: 为什么使用 React?
permalink: why-react-zh-CN.html
permalink: docs/why-react-zh-CN.html
next: displaying-data-zh-CN.html
---
React 是一个 Facebook 和 Instagram 用来创建用户界面的 JavaScript 库。很多人选择将 React 认为是 **[MVC](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)** 中的 **V**(视图)。

2
docs/02-displaying-data.it-IT.md

@ -1,7 +1,7 @@
---
id: displaying-data-it-IT
title: Visualizzare Dati
permalink: displaying-data-it-IT.html
permalink: docs/displaying-data-it-IT.html
prev: why-react-it-IT.html
next: jsx-in-depth-it-IT.html
---

2
docs/02-displaying-data.ja-JP.md

@ -1,7 +1,7 @@
---
id: displaying-data-ja-JP
title: データを表示する
permalink: displaying-data-ja-JP.html
permalink: docs/displaying-data-ja-JP.html
prev: why-react-ja-JP.html
next: jsx-in-depth-ja-JP.html

2
docs/02-displaying-data.ko-KR.md

@ -1,7 +1,7 @@
---
id: displaying-data-ko-KR
title: 데이터를 표시하기
permalink: displaying-data-ko-KR.html
permalink: docs/displaying-data-ko-KR.html
prev: why-react-ko-KR.html
next: jsx-in-depth-ko-KR.html
---

2
docs/02-displaying-data.md

@ -1,7 +1,7 @@
---
id: displaying-data
title: Displaying Data
permalink: displaying-data.html
permalink: docs/displaying-data.html
prev: why-react.html
next: jsx-in-depth.html
---

2
docs/02-displaying-data.zh-CN.md

@ -1,7 +1,7 @@
---
id: displaying-data-zh-CN
title: 显示数据
permalink: displaying-data-zh-CN.html
permalink: docs/displaying-data-zh-CN.html
prev: why-react-zh-CN.html
next: jsx-in-depth-zh-CN.html
---

2
docs/02.1-jsx-in-depth.it-IT.md

@ -1,7 +1,7 @@
---
id: jsx-in-depth-it-IT
title: JSX in Profondità
permalink: jsx-in-depth-it-IT.html
permalink: docs/jsx-in-depth-it-IT.html
prev: displaying-data-it-IT.html
next: jsx-spread-it-IT.html
---

2
docs/02.1-jsx-in-depth.ja-JP.md

@ -1,7 +1,7 @@
---
id: jsx-in-depth
title: JSXの深層
permalink: jsx-in-depth-ja-JP.html
permalink: docs/jsx-in-depth-ja-JP.html
prev: displaying-data-ja-JP.html
next: jsx-spread-ja_JP.html
---

2
docs/02.1-jsx-in-depth.ko-KR.md

@ -1,7 +1,7 @@
---
id: jsx-in-depth-ko-KR
title: JSX 깊이보기
permalink: jsx-in-depth-ko-KR.html
permalink: docs/jsx-in-depth-ko-KR.html
prev: displaying-data-ko-KR.html
next: jsx-spread-ko-KR.html
---

2
docs/02.1-jsx-in-depth.md

@ -1,7 +1,7 @@
---
id: jsx-in-depth
title: JSX in Depth
permalink: jsx-in-depth.html
permalink: docs/jsx-in-depth.html
prev: displaying-data.html
next: jsx-spread.html
---

2
docs/02.1-jsx-in-depth.zh-CN.md

@ -1,7 +1,7 @@
---
id: jsx-in-depth-zh-CN
title: 深入 JSX
permalink: jsx-in-depth-zh-CN.html
permalink: docs/jsx-in-depth-zh-CN.html
prev: displaying-data-zh-CN.html
next: jsx-spread-zh-CN.html
---

2
docs/02.2-jsx-spread.it-IT.md

@ -1,7 +1,7 @@
---
id: jsx-spread-it-IT
title: Attributi Spread JSX
permalink: jsx-spread-it-IT.html
permalink: docs/jsx-spread-it-IT.html
prev: jsx-in-depth-it-IT.html
next: jsx-gotchas-it-IT.html
---

2
docs/02.2-jsx-spread.ja-JP.md

@ -1,7 +1,7 @@
---
id: jsx-spread
title: JSXの拡張属性
permalink: jsx-spread-ja-JP.html
permalink: docs/jsx-spread-ja-JP.html
prev: jsx-in-depth-ja-JP.html
next: jsx-gotchas-ja-JP.html
---

2
docs/02.2-jsx-spread.ko-KR.md

@ -1,7 +1,7 @@
---
id: jsx-spread-ko-KR
title: JSX 스프레드 어트리뷰트
permalink: jsx-spread-ko-KR.html
permalink: docs/jsx-spread-ko-KR.html
prev: jsx-in-depth-ko-KR.html
next: jsx-gotchas-ko-KR.html
---

2
docs/02.2-jsx-spread.md

@ -1,7 +1,7 @@
---
id: jsx-spread
title: JSX Spread Attributes
permalink: jsx-spread.html
permalink: docs/jsx-spread.html
prev: jsx-in-depth.html
next: jsx-gotchas.html
---

2
docs/02.2-jsx-spread.zh-CN.md

@ -1,7 +1,7 @@
---
id: jsx-spread-zh-CN
title: JSX 展开属性
permalink: jsx-spread-zh-CN.html
permalink: docs/jsx-spread-zh-CN.html
prev: jsx-in-depth-zh-CN.html
next: jsx-gotchas-zh-CN.html
---

2
docs/02.3-jsx-gotchas.it-IT.md

@ -1,7 +1,7 @@
---
id: jsx-gotchas-it-IT
title: JSX Gotchas
permalink: jsx-gotchas-it-IT.html
permalink: docs/jsx-gotchas-it-IT.html
prev: jsx-spread-it-IT.html
next: interactivity-and-dynamic-uis-it-IT.html
---

2
docs/02.3-jsx-gotchas.ja-JP.md

@ -1,7 +1,7 @@
---
id: jsx-gotchas
title: JSXの理解
permalink: jsx-gotchas-ja-JP.html
permalink: docs/jsx-gotchas-ja-JP.html
prev: jsx-spread-ja-JP.html
next: interactivity-and-dynamic-uis-ja-JP.html

2
docs/02.3-jsx-gotchas.ko-KR.md

@ -1,7 +1,7 @@
---
id: jsx-gotchas-ko-KR
title: JSX Gotchas
permalink: jsx-gotchas-ko-KR.html
permalink: docs/jsx-gotchas-ko-KR.html
prev: jsx-spread-ko-KR.html
next: interactivity-and-dynamic-uis-ko-KR.html
---

2
docs/02.3-jsx-gotchas.md

@ -1,7 +1,7 @@
---
id: jsx-gotchas
title: JSX Gotchas
permalink: jsx-gotchas.html
permalink: docs/jsx-gotchas.html
prev: jsx-spread.html
next: interactivity-and-dynamic-uis.html
---

2
docs/02.3-jsx-gotchas.zh-CN.md

@ -1,7 +1,7 @@
---
id: jsx-gotchas-zh-CN
title: JSX 陷阱
permalink: jsx-gotchas-zh-CN.html
permalink: docs/jsx-gotchas-zh-CN.html
prev: jsx-spread-zh-CN.html
next: interactivity-and-dynamic-uis-zh-CN.html
---

2
docs/03-interactivity-and-dynamic-uis.it-IT.md

@ -1,7 +1,7 @@
---
id: interactivity-and-dynamic-uis-it-IT
title: Interattività e UI Dinamiche
permalink: interactivity-and-dynamic-uis-it-IT.html
permalink: docs/interactivity-and-dynamic-uis-it-IT.html
prev: jsx-gotchas-it-IT.html
next: multiple-components-it-IT.html
---

2
docs/03-interactivity-and-dynamic-uis.ja-JP.md

@ -1,7 +1,7 @@
---
id: interactivity-and-dynamic-uis
title: 相互作用と動的なUI
permalink: interactivity-and-dynamic-uis-ja-JP.html
permalink: docs/interactivity-and-dynamic-uis-ja-JP.html
prev: jsx-gotchas-ja-JP.html
next: multiple-components-ja-JP.html
---

2
docs/03-interactivity-and-dynamic-uis.ko-KR.md

@ -1,7 +1,7 @@
---
id: interactivity-and-dynamic-uis-ko-KR
title: 상호 작용 및 동적 UI
permalink: interactivity-and-dynamic-uis-ko-KR.html
permalink: docs/interactivity-and-dynamic-uis-ko-KR.html
prev: jsx-gotchas-ko-KR.html
next: multiple-components-ko-KR.html
---

2
docs/03-interactivity-and-dynamic-uis.md

@ -1,7 +1,7 @@
---
id: interactivity-and-dynamic-uis
title: Interactivity and Dynamic UIs
permalink: interactivity-and-dynamic-uis.html
permalink: docs/interactivity-and-dynamic-uis.html
prev: jsx-gotchas.html
next: multiple-components.html
---

2
docs/03-interactivity-and-dynamic-uis.zh-CN.md

@ -1,7 +1,7 @@
---
id: interactivity-and-dynamic-uis-zh-CN
title: 动态交互式用户界面
permalink: interactivity-and-dynamic-uis-zh-CN.html
permalink: docs/interactivity-and-dynamic-uis-zh-CN.html
prev: jsx-gotchas-zh-CN.html
next: multiple-components-zh-CN.html
---

2
docs/04-multiple-components.it-IT.md

@ -1,7 +1,7 @@
---
id: multiple-components-it-IT
title: Componenti Multipli
permalink: multiple-components-it-IT.html
permalink: docs/multiple-components-it-IT.html
prev: interactivity-and-dynamic-uis-it-IT.html
next: reusable-components-it-IT.html
---

2
docs/04-multiple-components.ja-JP.md

@ -1,7 +1,7 @@
---
id: multiple-components
title: 複数のコンポーネント
permalink: multiple-components-ja-JP.html
permalink: docs/multiple-components-ja-JP.html
prev: interactivity-and-dynamic-uis-ja-JP.html
next: reusable-components-ja-JP.html
---

2
docs/04-multiple-components.ko-KR.md

@ -1,7 +1,7 @@
---
id: multiple-components-ko-KR
title: 복합 컴포넌트
permalink: multiple-components-ko-KR.html
permalink: docs/multiple-components-ko-KR.html
prev: interactivity-and-dynamic-uis-ko-KR.html
next: reusable-components-ko-KR.html
---

2
docs/04-multiple-components.md

@ -1,7 +1,7 @@
---
id: multiple-components
title: Multiple Components
permalink: multiple-components.html
permalink: docs/multiple-components.html
prev: interactivity-and-dynamic-uis.html
next: reusable-components.html
---

2
docs/04-multiple-components.zh-CN.md

@ -1,7 +1,7 @@
---
id: multiple-components-zh-CN
title: 复合组件
permalink: multiple-components-zh-CN.html
permalink: docs/multiple-components-zh-CN.html
prev: interactivity-and-dynamic-uis-zh-CN.html
next: reusable-components-zh-CN.html
---

2
docs/05-reusable-components.it-IT.md

@ -1,7 +1,7 @@
---
id: reusable-components-it-IT
title: Componenti Riutilizzabili
permalink: reusable-components-it-IT.html
permalink: docs/reusable-components-it-IT.html
prev: multiple-components-it-IT.html
next: transferring-props-it-IT.html
---

2
docs/05-reusable-components.ja-JP.md

@ -1,7 +1,7 @@
---
id: reusable-components
title: 再利用可能なコンポーネント
permalink: reusable-components-ja-JP.html
permalink: docs/reusable-components-ja-JP.html
prev: multiple-components-ja-JP.html
next: transferring-props-ja-JP.html
---

2
docs/05-reusable-components.ko-KR.md

@ -1,7 +1,7 @@
---
id: reusable-components-ko-KR
title: 재사용가능한 컴포넌트
permalink: reusable-components-ko-KR.html
permalink: docs/reusable-components-ko-KR.html
prev: multiple-components-ko-KR.html
next: transferring-props-ko-KR.html
---

2
docs/05-reusable-components.md

@ -1,7 +1,7 @@
---
id: reusable-components
title: Reusable Components
permalink: reusable-components.html
permalink: docs/reusable-components.html
prev: multiple-components.html
next: transferring-props.html
---

2
docs/05-reusable-components.zh-CN.md

@ -1,7 +1,7 @@
---
id: reusable-components-zh-CN
title: 可复用组件
permalink: reusable-components-zh-CN.html
permalink: docs/reusable-components-zh-CN.html
prev: multiple-components-zh-CN.html
next: transferring-props-zh-CN.html
---

2
docs/06-transferring-props.it-IT.md

@ -1,7 +1,7 @@
---
id: transferring-props-it-IT
title: Trasferimento delle Proprietà
permalink: transferring-props-it-IT.html
permalink: docs/transferring-props-it-IT.html
prev: reusable-components-it-IT.html
next: forms-it-IT.html
---

2
docs/06-transferring-props.ja-JP.md

@ -1,7 +1,7 @@
---
id: transferring-props
title: propsの移譲
permalink: transferring-props-ja-JP.html
permalink: docs/transferring-props-ja-JP.html
prev: reusable-components-ja-JP.html
next: forms-ja-JP.html

2
docs/06-transferring-props.ko-KR.md

@ -1,7 +1,7 @@
---
id: transferring-props-ko-KR
title: Props 전달
permalink: transferring-props-ko-KR.html
permalink: docs/transferring-props-ko-KR.html
prev: reusable-components-ko-KR.html
next: forms-ko-KR.html
---

2
docs/06-transferring-props.md

@ -1,7 +1,7 @@
---
id: transferring-props
title: Transferring Props
permalink: transferring-props.html
permalink: docs/transferring-props.html
prev: reusable-components.html
next: forms.html
---

2
docs/06-transferring-props.zh-CN.md

@ -1,7 +1,7 @@
---
id: transferring-props-zh-CN
title: 传递 Props
permalink: transferring-props-zh-CN.html
permalink: docs/transferring-props-zh-CN.html
prev: reusable-components-zh-CN.html
next: forms-zh-CN.html
---

2
docs/07-forms.it-IT.md

@ -1,7 +1,7 @@
---
id: forms-it-IT
title: Moduli
permalink: forms-it-IT.html
permalink: docs/forms-it-IT.html
prev: transferring-props-it-IT.html
next: working-with-the-browser-it-IT.html
---

2
docs/07-forms.ja-JP.md

@ -1,7 +1,7 @@
---
id: forms
title: フォーム
permalink: forms-ja-JP.html
permalink: docs/forms-ja-JP.html
prev: transferring-props-ja-JP.html
next: working-with-the-browser-ja-JP.html
---

2
docs/07-forms.ko-KR.md

@ -1,7 +1,7 @@
---
id: forms-ko-KR
title: 폼
permalink: forms-ko-KR.html
permalink: docs/forms-ko-KR.html
prev: transferring-props-ko-KR.html
next: working-with-the-browser-ko-KR.html
---

2
docs/07-forms.md

@ -1,7 +1,7 @@
---
id: forms
title: Forms
permalink: forms.html
permalink: docs/forms.html
prev: transferring-props.html
next: working-with-the-browser.html
---

2
docs/07-forms.zh-CN.md

@ -1,7 +1,7 @@
---
id: forms-zh-CN
title: 表单组件
permalink: forms-zh-CN.html
permalink: docs/forms-zh-CN.html
prev: transferring-props-zh-CN.html
next: working-with-the-browser-zh-CN.html
---

2
docs/08-working-with-the-browser.it-IT.md

@ -1,7 +1,7 @@
---
id: working-with-the-browser-it-IT
title: Lavorare con il Browser
permalink: working-with-the-browser-it-IT.html
permalink: docs/working-with-the-browser-it-IT.html
prev: forms-it-IT.html
next: more-about-refs-it-IT.html
---

2
docs/08-working-with-the-browser.ja-JP.md

@ -1,7 +1,7 @@
---
id: working-with-the-browser
title: ブラウザと動くこと
permalink: working-with-the-browser-ja-JP.html
permalink: docs/working-with-the-browser-ja-JP.html
prev: forms-ja-JP.html
next: more-about-refs-ja-JP.html
---

2
docs/08-working-with-the-browser.ko-KR.md

@ -1,7 +1,7 @@
---
id: working-with-the-browser-ko-KR
title: 브라우저에서의 동작
permalink: working-with-the-browser-ko-KR.html
permalink: docs/working-with-the-browser-ko-KR.html
prev: forms-ko-KR.html
next: more-about-refs-ko-KR.html
---

2
docs/08-working-with-the-browser.md

@ -1,7 +1,7 @@
---
id: working-with-the-browser
title: Working With the Browser
permalink: working-with-the-browser.html
permalink: docs/working-with-the-browser.html
prev: forms.html
next: more-about-refs.html
---

2
docs/08-working-with-the-browser.zh-CN.md

@ -1,7 +1,7 @@
---
id: working-with-the-browser-zh-CN
title: 与浏览器协作
permalink: working-with-the-browser-zh-CN.html
permalink: docs/working-with-the-browser-zh-CN.html
prev: forms-zh-CN.html
next: more-about-refs-zh-CN.html
---

2
docs/08.1-more-about-refs.it-IT.md

@ -1,7 +1,7 @@
---
id: more-about-refs-it-IT
title: Riferimenti ai Componenti
permalink: more-about-refs-it-IT.html
permalink: docs/more-about-refs-it-IT.html
prev: working-with-the-browser-it-IT.html
next: tooling-integration-it-IT.html
---

2
docs/08.1-more-about-refs.ja-JP.md

@ -1,7 +1,7 @@
---
id: more-about-refs
title: 参照についての詳細
permalink: more-about-refs-ja-JP.html
permalink: docs/more-about-refs-ja-JP.html
prev: working-with-the-browser-ja-JP.html
next: tooling-integration-ja-JP.html

2
docs/08.1-more-about-refs.ko-KR.md

@ -1,7 +1,7 @@
---
id: more-about-refs-ko-KR
title: refs에서 컴포넌트로
permalink: more-about-refs-ko-KR.html
permalink: docs/more-about-refs-ko-KR.html
prev: working-with-the-browser-ko-KR.html
next: tooling-integration-ko-KR.html
---

2
docs/08.1-more-about-refs.md

@ -1,7 +1,7 @@
---
id: more-about-refs
title: Refs to Components
permalink: more-about-refs.html
permalink: docs/more-about-refs.html
prev: working-with-the-browser.html
next: tooling-integration.html
---

2
docs/08.1-more-about-refs.zh-CN.md

@ -1,7 +1,7 @@
---
id: more-about-refs-zh-CN
title: 对组件的refs
permalink: more-about-refs-zh-CN.html
permalink: docs/more-about-refs-zh-CN.html
prev: working-with-the-browser-zh-CN.html
next: tooling-integration-zh-CN.html
---

2
docs/09-tooling-integration.it-IT.md

@ -1,7 +1,7 @@
---
id: tooling-integration-it-IT
title: Integrazione con Strumenti
permalink: tooling-integration-it-IT.html
permalink: docs/tooling-integration-it-IT.html
prev: more-about-refs-it-IT.html
next: addons-it-IT.html
---

2
docs/09-tooling-integration.ja-JP.md

@ -1,7 +1,7 @@
---
id: tooling-integration
title: インテグレーションツール
permalink: tooling-integration-ja-JP.html
permalink: docs/tooling-integration-ja-JP.html
prev: more-about-refs-ja-JP.html
next: addons-ja-JP.html
---

2
docs/09-tooling-integration.ko-KR.md

@ -1,7 +1,7 @@
---
id: tooling-integration-ko-KR
title: 툴 통합
permalink: tooling-integration-ko-KR.html
permalink: docs/tooling-integration-ko-KR.html
prev: more-about-refs-ko-KR.html
next: addons-ko-KR.html
---

2
docs/09-tooling-integration.md

@ -1,7 +1,7 @@
---
id: tooling-integration
title: Tooling Integration
permalink: tooling-integration.html
permalink: docs/tooling-integration.html
prev: more-about-refs.html
next: language-tooling.html
---

2
docs/09-tooling-integration.zh-CN.md

@ -1,7 +1,7 @@
---
id: tooling-integration-zh-CN
title: 工具集成
permalink: tooling-integration-zh-CN.html
permalink: docs/tooling-integration-zh-CN.html
prev: more-about-refs-zh-CN.html
next: addons-zh-CN.html
---

2
docs/09.1-language-tooling.md

@ -1,7 +1,7 @@
---
id: language-tooling
title: Language Tooling
permalink: language-tooling.html
permalink: docs/language-tooling.html
prev: tooling-integration.html
next: package-management.html
---

2
docs/09.2-package-management.md

@ -1,7 +1,7 @@
---
id: package-management
title: Package Management
permalink: package-management.html
permalink: docs/package-management.html
prev: language-tooling.html
next: environments.html
---

2
docs/09.3-environments.md

@ -1,7 +1,7 @@
---
id: environments
title: Server-side Environments
permalink: environments.html
permalink: docs/environments.html
prev: package-management.html
next: addons.html
---

2
docs/10-addons.it-IT.md

@ -1,7 +1,7 @@
---
id: addons-it-IT
title: Add-ons
permalink: addons-it-IT.html
permalink: docs/addons-it-IT.html
prev: tooling-integration-it-IT.html
next: animation-it-IT.html
---

2
docs/10-addons.ja-JP.md

@ -1,7 +1,7 @@
---
id: addons
title: アドオン
permalink: addons-ja-JP.html
permalink: docs/addons-ja-JP.html
prev: tooling-integration-ja-JP.html
next: animation-ja-JP.html
---

2
docs/10-addons.ko-KR.md

@ -1,7 +1,7 @@
---
id: addons-ko-KR
title: 애드온
permalink: addons-ko-KR.html
permalink: docs/addons-ko-KR.html
prev: tooling-integration-ko-KR.html
next: animation-ko-KR.html
---

2
docs/10-addons.md

@ -1,7 +1,7 @@
---
id: addons
title: Add-ons
permalink: addons.html
permalink: docs/addons.html
prev: environments.html
next: animation.html
---

2
docs/10-addons.zh-CN.md

@ -1,7 +1,7 @@
---
id: addons-zh-CN
title: 插件
permalink: addons-zh-CN.html
permalink: docs/addons-zh-CN.html
prev: tooling-integration-zh-CN.html
next: animation-zh-CN.html
---

2
docs/10.1-animation.it-IT.md

@ -1,7 +1,7 @@
---
id: animation-it-IT
title: Animazioni
permalink: animation-it-IT.html
permalink: docs/animation-it-IT.html
prev: addons-it-IT.html
next: two-way-binding-helpers-it-IT.html
---

2
docs/10.1-animation.ja-JP.md

@ -1,7 +1,7 @@
---
id: animation
title: アニメーション
permalink: animation-ja-JP.html
permalink: docs/animation-ja-JP.html
prev: addons-ja-JP.html
next: two-way-binding-helpers-ja-JP.html
---

2
docs/10.1-animation.ko-KR.md

@ -1,7 +1,7 @@
---
id: animation-ko-KR
title: 애니메이션
permalink: animation-ko-KR.html
permalink: docs/animation-ko-KR.html
prev: addons-ko-KR.html
next: two-way-binding-helpers-ko-KR.html
---

2
docs/10.1-animation.md

@ -1,7 +1,7 @@
---
id: animation
title: Animation
permalink: animation.html
permalink: docs/animation.html
prev: addons.html
next: two-way-binding-helpers.html
---

2
docs/10.1-animation.zh-CN.md

@ -1,7 +1,7 @@
---
id: animation-zh-CN
title: 动画
permalink: animation-zh-CN.html
permalink: docs/animation-zh-CN.html
prev: addons-zh-CN.html
next: two-way-binding-helpers-zh-CN.html
---

2
docs/10.10-shallow-compare.md

@ -1,7 +1,7 @@
---
id: shallow-compare
title: Shallow Compare
permalink: shallow-compare.html
permalink: docs/shallow-compare.html
prev: perf.html
next: advanced-performance.html
---

2
docs/10.10-shallow-compare.zh-CN.md

@ -1,7 +1,7 @@
---
id: shallow-compare-zh-CN
title: 浅比较
permalink: shallow-compare-zh-CN.html
permalink: docs/shallow-compare-zh-CN.html
prev: perf-zh-CN.html
next: advanced-performance-zh-CN.html
---

2
docs/10.2-form-input-binding-sugar.it-IT.md

@ -1,7 +1,7 @@
---
id: two-way-binding-helpers-it-IT
title: Helper Per Binding Bidirezionali
permalink: two-way-binding-helpers-it-IT.html
permalink: docs/two-way-binding-helpers-it-IT.html
prev: animation-it-IT.html
next: test-utils-it-IT.html
---

2
docs/10.2-form-input-binding-sugar.ja-JP.md

@ -1,7 +1,7 @@
---
id: two-way-binding-helpers
title: 2ウェイバインディングのヘルパ
permalink: two-way-binding-helpers-ja-JP.html
permalink: docs/two-way-binding-helpers-ja-JP.html
prev: animation-ja-JP.html
next: test-utils-ja-JP.html
---

2
docs/10.2-form-input-binding-sugar.ko-KR.md

@ -1,7 +1,7 @@
---
id: two-way-binding-helpers-ko-KR
title: 양방향 바인딩 핼퍼
permalink: two-way-binding-helpers-ko-KR.html
permalink: docs/two-way-binding-helpers-ko-KR.html
prev: animation-ko-KR.html
next: test-utils-ko-KR.html
---

2
docs/10.2-form-input-binding-sugar.md

@ -1,7 +1,7 @@
---
id: two-way-binding-helpers
title: Two-Way Binding Helpers
permalink: two-way-binding-helpers.html
permalink: docs/two-way-binding-helpers.html
prev: animation.html
next: test-utils.html
---

2
docs/10.2-form-input-binding-sugar.zh-CN.md

@ -1,7 +1,7 @@
---
id: two-way-binding-helpers-zh-CN
title: 双向绑定辅助
permalink: two-way-binding-helpers-zh-CN.html
permalink: docs/two-way-binding-helpers-zh-CN.html
prev: animation-zh-CN.html
next: test-utils-zh-CN.html
---

2
docs/10.3-class-name-manipulation.it-IT.md

@ -1,7 +1,7 @@
---
id: class-name-manipulation-it-IT
title: Manipolazione del Nome di Classe
permalink: class-name-manipulation-it-IT.html
permalink: docs/class-name-manipulation-it-IT.html
prev: two-way-binding-helpers-it-IT.html
next: test-utils-it-IT.html
---

2
docs/10.3-class-name-manipulation.ja-JP.md

@ -1,7 +1,7 @@
---
id: class-name-manipulation
title: クラス名の操作
permalink: class-name-manipulation-ja-JP.html
permalink: docs/class-name-manipulation-ja-JP.html
prev: two-way-binding-helpers-ja-JP.html
next: test-utils-ja-JP.html
---

2
docs/10.3-class-name-manipulation.ko-KR.md

@ -1,7 +1,7 @@
---
id: class-name-manipulation-ko-KR
title: 클래스 이름 조작
permalink: class-name-manipulation-ko-KR.html
permalink: docs/class-name-manipulation-ko-KR.html
prev: two-way-binding-helpers-ko-KR.html
next: test-utils-ko-KR.html
---

2
docs/10.3-class-name-manipulation.md

@ -1,7 +1,7 @@
---
id: class-name-manipulation
title: Class Name Manipulation
permalink: class-name-manipulation.html
permalink: docs/class-name-manipulation.html
prev: two-way-binding-helpers.html
next: test-utils.html
---

2
docs/10.3-class-name-manipulation.zh-CN.md

@ -1,7 +1,7 @@
---
id: class-name-manipulation-zh-CN
title: 类名操纵
permalink: class-name-manipulation-zh-CN.html
permalink: docs/class-name-manipulation-zh-CN.html
prev: two-way-binding-helpers-zh-CN.html
next: test-utils-zh-CN.html
---

2
docs/10.4-test-utils.it-IT.md

@ -1,7 +1,7 @@
---
id: test-utils-it-IT
title: Utilità di Test
permalink: test-utils-it-IT.html
permalink: docs/test-utils-it-IT.html
prev: two-way-binding-helpers-it-IT.html
next: clone-with-props-it-IT.html
---

2
docs/10.4-test-utils.ja-JP.md

@ -1,7 +1,7 @@
---
id: test-utils
title: テストユーティリティ
permalink: test-utils-ja-JP.html
permalink: docs/test-utils-ja-JP.html
prev: two-way-binding-helpers-ja-JP.html
next: clone-with-props-ja-JP.html
---

2
docs/10.4-test-utils.ko-KR.md

@ -1,7 +1,7 @@
---
id: test-utils-ko-KR
title: 테스트 유틸리티
permalink: test-utils-ko-KR.html
permalink: docs/test-utils-ko-KR.html
prev: two-way-binding-helpers-ko-KR.html
next: clone-with-props-ko-KR.html
---

2
docs/10.4-test-utils.md

@ -1,7 +1,7 @@
---
id: test-utils
title: Test Utilities
permalink: test-utils.html
permalink: docs/test-utils.html
prev: two-way-binding-helpers.html
next: clone-with-props.html
---

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save