Skip to content

Commit

Permalink
英語版の #36595 を反映
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Dec 17, 2024
1 parent ed2bdc9 commit a4ca5aa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion files/ja/learn/server-side/django/introduction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def index(request):
{% if youngest_teams %}
<ul>
{% for team in youngest_teams %}
<li>\{\{ team.team_name \}\}</li>
<li>\{{ team.team_name }}</li>
{% endfor %}
</ul>
{% else %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def youngest(request):
{% if youngest_teams %}
<ul>
{% for team in youngest_teams %}
<li>\{\{ team.team_name \}\}</li>
<li>\{{ team.team_name }}</li>
{% endfor %}
</ul>
{% else %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ JavaScript フレームワークは、この種の作業をはるかに簡単に
```html
<ul>
<li v-for="task in tasks" v-bind:key="task.id">
<span>\{{task.name\}}</span>
<span>\{{task.name}}</span>
<button type="button">Delete</button>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ l10n:

このマクロは、固有の API リファレンスなど、特定のコンテキストでのみ使用します。

- [`RFC`](https://github.com/mdn/yari/blob/main/kumascript/macros/RFC.ejs) は数値を指定して、特定の RFC へのリンクを生成します。構文は `\{\{RFC(number)\}\}` です。例えば、 `\{\{RFC(2616)\}\}` は {{ RFC(2616) }} になります。
- [`RFC`](https://github.com/mdn/yari/blob/main/kumascript/macros/RFC.ejs) は数値を指定して、特定の RFC へのリンクを生成します。構文は `\{{RFC(number)}}` です。例えば、 `\{{RFC(2616)}}` は {{ RFC(2616) }} になります。

### ランディングページの部品

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ MDN Web Docs で書くことの第一の目標は、常にオープンなウェ
MDN では、 HTML 要素を示すのに [`HTMLElement` マクロ](/ja/docs/MDN/Writing_guidelines/Page_structures/Macros/Commonly_used_macros#linking_to_pages_in_references)を使うこともできます。これは、要素のスタイル設定、角括弧 "<>"、参照ページへのリンクを追加します。

- **逆引用符の使用**: `<span>`
- **マクロの使用**: {{HTMLElement("span")}} (Markdown 内のソース: \\{{HTMLElement("span")\}}
- **マクロの使用**: {{HTMLElement("span")}} (Markdown 内のソース: `\{{HTMLElement("span")}}`

- **parameter と argument**: MDN で推奨する用語は **parameter** です。一貫性のためにできるだけ "argument" の用語は使用しないでください。

Expand Down

0 comments on commit a4ca5aa

Please sign in to comment.