Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

英語版の #36595 を反映 #25137

Merged
merged 2 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,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 @@ -222,7 +222,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 @@ -158,7 +158,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 @@ -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
Loading