Skip to content

Commit 8a3212d

Browse files
fiji-flomfuji09github-actions[bot]
authored
chore(macros): fix macros (#27366)
* chore(macros): fix macros I'm working on migrating rari to use tree-sitter instead of PEG and found some broken macros. * Update files/ja/web/api/ndefrecord/data/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update files/ko/web/api/audionode/connect/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: Masahiro FUJIMOTO <mfujimot@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3418b3a commit 8a3212d

File tree

9 files changed

+20
-20
lines changed
  • files
    • ja/web
      • accessibility/aria/reference/roles/search_role
      • api
      • javascript/reference/global_objects/evalerror
    • ko

9 files changed

+20
-20
lines changed

files/ja/web/accessibility/aria/reference/roles/search_role/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ l10n:
8989

9090
- {{HTMLElement('form')}} 要素
9191
- {{HTMLElement('input')}} 要素
92-
- {{HTML/ReferenceElements('search')}} 要素
92+
- {{HTMLElement('search')}} 要素
9393
- [`<input type="search">`](/ja/docs/Web/HTML/Reference/Elements/input/search)
9494
- [HTML のセクションとアウトラインの使用](/ja/docs/Web/HTML/Reference/Elements/Heading_Elements)

files/ja/web/api/highlightregistry/delete/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ delete(customHighlightName)
2121
### 引数
2222

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

2626
### 返値
2727

files/ja/web/api/ndefrecord/data/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ NDEFRecord.data
2222

2323
##
2424

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

2828
```js
2929
const ndef = new NDEFReader();

files/ja/web/javascript/reference/global_objects/evalerror/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ l10n:
2020

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

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

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

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

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

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

3636
##
3737

files/ko/learn_web_development/extensions/server-side/django/forms/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -370,13 +370,13 @@ def renew_book_librarian(request, pk):
370370
{% extends "base_generic.html" %}
371371
372372
{% block content %}
373-
<h1>Renew: {{ book_instance.book.title }}</h1>
374-
<p>Borrower: {{ book_instance.borrower }}</p>
375-
<p> if book_instance.is_overdue %} class="text-danger"{% endif %}>Due date: {{book_instance.due_back}}</p>
373+
<h1>Renew: \{{ book_instance.book.title }}</h1>
374+
<p>Borrower: \{{ book_instance.borrower }}</p>
375+
<p> if book_instance.is_overdue %} class="text-danger"{% endif %}>Due date: \{{book_instance.due_back}}</p>
376376
377377
<form action="" method="post">
378378
{% csrf_token %}
379-
{{ form.as_table }}
379+
\{{ form.as_table }}
380380
<input type="submit" value="Submit">
381381
</form>
382382
{% endblock %}

files/ko/learn_web_development/extensions/server-side/django/generic_views/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,13 +474,13 @@ class BookListView(generic.ListView):
474474
<div class="pagination">
475475
<span class="page-links">
476476
{% if page_obj.has_previous %}
477-
<a href="{{ request.path }}?page={{ page_obj.previous_page_number }}">previous</a>
477+
<a href="\{{ request.path }}?page=\{{ page_obj.previous_page_number }}">previous</a>
478478
{% endif %}
479479
<span class="page-current">
480-
<p>Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.</p>
480+
<p>Page \{{ page_obj.number }} of \{{ page_obj.paginator.num_pages }}.</p>
481481
</span>
482482
{% if page_obj.has_next %}
483-
<a href="{{ request.path }}?page={{ page_obj.next_page_number }}">next</a>
483+
<a href="\{{ request.path }}?page=\{{ page_obj.next_page_number }}">next</a>
484484
{% endif %}
485485
</span>
486486
</div>

files/ko/web/api/audionode/connect/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ lfo.start();
100100

101101
#### AudioParam 사용 일람
102102

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

107107
{{ 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") }}이 보통 어떠한 오디오 연결 없이 가지는 값이며, 이는 이 파라미터에 예정된 모든 타임라인 변화를 포함합니다.)
108108

files/ko/web/api/audioparam/linearramptovalueattime/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ var AudioParam = AudioParam.linearRampToValueAtTime(value, endTime);
2727
## 예제
2828

2929
이 예제에는 두 개의 제어 버튼을 가진 미디어 소스가 있습니다 (소스 코드는 [audio-param
30-
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) 합니다. 비록 종종 {{
31-
domxref("AudioParam.exponentialRampToValueAtTime()") }}가 좀 더 자연스럽다고 여겨지긴 하지만 이것은 페이드 인/페이드 아웃 이펙트에 아주 유용합니다.
30+
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) 합니다. 비록 종종
31+
{{ domxref("AudioParam.exponentialRampToValueAtTime()") }}가 좀 더 자연스럽다고 여겨지긴 하지만 이것은 페이드 인/페이드 아웃 이펙트에 아주 유용합니다.
3232

3333
```js
3434
// 오디오 컨텍스트를 생성합니다

files/ko/web/api/keyboardevent/iscomposing/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ l10n:
77

88
{{APIRef("UI Events")}}
99

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

0 commit comments

Comments
 (0)