Skip to content

chore(macros): fix macros #27366

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

Merged
merged 3 commits into from
May 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -89,6 +89,6 @@ l10n:

- {{HTMLElement('form')}} 要素
- {{HTMLElement('input')}} 要素
- {{HTML/ReferenceElements('search')}} 要素
- {{HTMLElement('search')}} 要素
- [`<input type="search">`](/ja/docs/Web/HTML/Reference/Elements/input/search)
- [HTML のセクションとアウトラインの使用](/ja/docs/Web/HTML/Reference/Elements/Heading_Elements)
2 changes: 1 addition & 1 deletion files/ja/web/api/highlightregistry/delete/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ delete(customHighlightName)
### 引数

- `customHighlightName`
- : この `HighlightRegistry` から除去する {{domxref("Highlight")}} オブジェクトの名前({{jsxref("String", "文字列", "", "nocode)}})。
- : この `HighlightRegistry` から除去する {{domxref("Highlight")}} オブジェクトの名前({{jsxref("String", "文字列", "", "nocode")}})。

### 返値

Expand Down
4 changes: 2 additions & 2 deletions files/ja/web/api/ndefrecord/data/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ NDEFRecord.data

## 例

次の例は {{domxref("NDEFReadingEvent.message")}} から取得した {{domxref("NDEFMessage")}} オブジェクト内のレコードを反復処理します。 {{domxref("NDEFRecord.mediaType",
"mediaType")}} に基づいてレコードを選択すると、次に `data` プロパティに格納されているものをデコードします。
次の例は {{domxref("NDEFReadingEvent.message")}} から取得した {{domxref("NDEFMessage")}} オブジェクト内のレコードを反復処理します。
{{domxref("NDEFRecord.mediaType", "mediaType")}} に基づいてレコードを選択すると、次に `data` プロパティに格納されているものをデコードします。

```js
const ndef = new NDEFReader();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ l10n:

## インスタンスプロパティ

_親である {{jsxref("Error")} から継承したプロパティがあります_。
_親である {{jsxref("Error")}} から継承したプロパティがあります_。

これらのプロパティは `EvalError.prototype` に定義されており、すべての `EvalError` インスタンスで共有されます。

Expand All @@ -31,7 +31,7 @@ _親である {{jsxref("Error")} から継承したプロパティがありま

## インスタンスメソッド

_親である {{jsxref("Error")} から継承したプロパティがあります_。
_親である {{jsxref("Error")}} から継承したプロパティがあります_。

## 例

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,13 +370,13 @@ def renew_book_librarian(request, pk):
{% extends "base_generic.html" %}

{% block content %}
<h1>Renew: {{ book_instance.book.title }}</h1>
<p>Borrower: {{ book_instance.borrower }}</p>
<p> if book_instance.is_overdue %} class="text-danger"{% endif %}>Due date: {{book_instance.due_back}}</p>
<h1>Renew: \{{ book_instance.book.title }}</h1>
<p>Borrower: \{{ book_instance.borrower }}</p>
<p> if book_instance.is_overdue %} class="text-danger"{% endif %}>Due date: \{{book_instance.due_back}}</p>

<form action="" method="post">
{% csrf_token %}
{{ form.as_table }}
\{{ form.as_table }}
<input type="submit" value="Submit">
</form>
{% endblock %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,13 +474,13 @@ class BookListView(generic.ListView):
<div class="pagination">
<span class="page-links">
{% if page_obj.has_previous %}
<a href="{{ request.path }}?page={{ page_obj.previous_page_number }}">previous</a>
<a href="\{{ request.path }}?page=\{{ page_obj.previous_page_number }}">previous</a>
{% endif %}
<span class="page-current">
<p>Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.</p>
<p>Page \{{ page_obj.number }} of \{{ page_obj.paginator.num_pages }}.</p>
</span>
{% if page_obj.has_next %}
<a href="{{ request.path }}?page={{ page_obj.next_page_number }}">next</a>
<a href="\{{ request.path }}?page=\{{ page_obj.next_page_number }}">next</a>
{% endif %}
</span>
</div>
Expand Down
6 changes: 3 additions & 3 deletions files/ko/web/api/audionode/connect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ lfo.start();

#### AudioParam 사용 일람

`AudioNode` 출력을 하나 이상의 {{
domxref("AudioParam") }}에 연결하는 것은 가능하고, 하나 이상의 AudioNode 출력을 하나의 {{
domxref("AudioParam") }}에 다수의 `connect()` 호출과 함께 연결하는 것은 가능합니다. 그러므로 [팬 인과 팬 아웃](/ko/docs/Web/API/Web_Audio_API/Basic_concepts_behind_Web_Audio_API#fan-in_and_fan-out)이 지원됩니다.
`AudioNode` 출력을 하나 이상의
{{ domxref("AudioParam") }}에 연결하는 것은 가능하고, 하나 이상의 AudioNode 출력을 하나의
{{ domxref("AudioParam") }}에 다수의 `connect()` 호출과 함께 연결하는 것은 가능합니다. 그러므로 [팬 인과 팬 아웃](/ko/docs/Web/API/Web_Audio_API/Basic_concepts_behind_Web_Audio_API#fan-in_and_fan-out)이 지원됩니다.

{{ domxref("AudioParam") }}은 자신에게 연결된 모든 `AudioNode` 출력으로부터 렌더링된 오디오 데이터를 취하고 그 데이터를 [다운 믹싱](/ko/docs/Web/API/Web_Audio_API/Basic_concepts_behind_Web_Audio_API#up-mixing_and_down-mixing)함으로써 모노로 변환합니다 (만약 데이터가 이미 모노가 아니라면). 다음으로, {{ domxref("AudioParam") }}은 그 데이터를 그러한 다른 출력들과, 고유한 파라미터 값과 함께 섞을 것입니다. (고유한 파라미터 값이란 {{ domxref("AudioParam") }}이 보통 어떠한 오디오 연결 없이 가지는 값이며, 이는 이 파라미터에 예정된 모든 타임라인 변화를 포함합니다.)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ var AudioParam = AudioParam.linearRampToValueAtTime(value, endTime);
## 예제

이 예제에는 두 개의 제어 버튼을 가진 미디어 소스가 있습니다 (소스 코드는 [audio-param
repo](https://github.com/mdn/webaudio-examples/tree/master/audio-param)에서 볼 수 있고, [작동 예제](https://mdn.github.io/webaudio-examples/audio-param/)도 볼 수 있습니다). 이 버튼들이 눌렸을 때, `linearRampToValueAtTime()` 가 사용되어 각각 gain 값을 1.0까지, 그리고 0까지 서서히 사라지게(fade) 합니다. 비록 종종 {{
domxref("AudioParam.exponentialRampToValueAtTime()") }}가 좀 더 자연스럽다고 여겨지긴 하지만 이것은 페이드 인/페이드 아웃 이펙트에 아주 유용합니다.
repo](https://github.com/mdn/webaudio-examples/tree/master/audio-param)에서 볼 수 있고, [작동 예제](https://mdn.github.io/webaudio-examples/audio-param/)도 볼 수 있습니다). 이 버튼들이 눌렸을 때, `linearRampToValueAtTime()` 가 사용되어 각각 gain 값을 1.0까지, 그리고 0까지 서서히 사라지게(fade) 합니다. 비록 종종
{{ domxref("AudioParam.exponentialRampToValueAtTime()") }}가 좀 더 자연스럽다고 여겨지긴 하지만 이것은 페이드 인/페이드 아웃 이펙트에 아주 유용합니다.

```js
// 오디오 컨텍스트를 생성합니다
Expand Down
4 changes: 2 additions & 2 deletions files/ko/web/api/keyboardevent/iscomposing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ l10n:

{{APIRef("UI Events")}}

**`KeyboardEvent.isComposing`** 는 읽기 전용 속성으로 {{domxref("Element/compositionstart_event",
"compositionstart")}} 이후나
**`KeyboardEvent.isComposing`** 는 읽기 전용 속성으로
{{domxref("Element/compositionstart_event", "compositionstart")}} 이후나
{{domxref("Element/compositionend_event", "compositionend")}} 이전과
같은 합성 세션 내에서 이벤트가 발생하는지를 불리언 값으로 나타냅니다.

Expand Down
Loading