Browse Source

Change number of html{} to highlight correct line

main
Kohei TAKATA 10 years ago
parent
commit
f81254363b
  1. 2
      docs/getting-started.ja-JP.md
  2. 2
      docs/getting-started.ko-KR.md
  3. 2
      docs/getting-started.md
  4. 2
      docs/getting-started.zh-CN.md
  5. 2
      docs/tutorial.ja-JP.md
  6. 2
      docs/tutorial.ko-KR.md
  7. 2
      docs/tutorial.md

2
docs/getting-started.ja-JP.md

@ -92,7 +92,7 @@ React.render(
最後に HTML ファイルを以下のように書き換えましょう。
```html{6,10}
```html{7,11}
<!DOCTYPE html>
<html>
<head>

2
docs/getting-started.ko-KR.md

@ -90,7 +90,7 @@ React.render(
아래의 내용대로 HTML 파일을 업데이트합니다:
```html{6,10}
```html{7,11}
<!DOCTYPE html>
<html>
<head>

2
docs/getting-started.md

@ -91,7 +91,7 @@ React.render(
Update your HTML file as below:
```html{6,10}
```html{7,11}
<!DOCTYPE html>
<html>
<head>

2
docs/getting-started.zh-CN.md

@ -91,7 +91,7 @@ React.render(
对照下面更新你的 HTML 代码
```html{6,10}
```html{7,11}
<!DOCTYPE html>
<html>
<head>

2
docs/tutorial.ja-JP.md

@ -217,7 +217,7 @@ Markdown はインラインでテキストをフォーマットする簡単な
まず最初に、サードパーティ製の **Showdown** ライブラリをアプリケーションに追加します。 Showdown は Markdown テキストを生の HTML に変換する JavaScript ライブラリです。 既にある head タグの内側に script タグを書き込み、以下のように Showdown を読み込ませます。
```html{7}
```html{8}
<!-- index.html -->
<head>
<meta charset="UTF-8" />

2
docs/tutorial.ko-KR.md

@ -220,7 +220,7 @@ Markdown은 텍스트를 포맷팅하는 간단한 방식입니다. 예를 들
먼저 서드파티 라이브러리인 **marked**를 애플리케이션에 추가합니다. 이 JavaScript 라이브러리는 Markdown 텍스트를 HTML 문법으로 변환해줍니다. head 태그안에 스크립트 태그를 추가해 주세요. (React playground에는 이미 포함되어 있습니다):
```html{7}
```html{8}
<!-- index.html -->
<head>
<meta charset="UTF-8" />

2
docs/tutorial.md

@ -218,7 +218,7 @@ Markdown is a simple way to format your text inline. For example, surrounding te
First, add the third-party library **marked** to your application. This is a JavaScript library which takes Markdown text and converts it to raw HTML. This requires a script tag in your head (which we have already included in the React playground):
```html{7}
```html{8}
<!-- index.html -->
<head>
<meta charset="UTF-8" />

Loading…
Cancel
Save