From c40e50ecf36b01573139180136f85294383595a1 Mon Sep 17 00:00:00 2001 From: kraccoon-dev Date: Mon, 14 Aug 2023 15:47:59 +0900 Subject: [PATCH] fix: macro render errors --- files/ko/glossary/origin/index.md | 4 - files/ko/glossary/truthy/index.md | 4 - .../building_blocks/debugging_css/index.md | 2 - .../audioworkletprocessor/process/index.md | 2 +- .../ko/web/api/fetch_api/using_fetch/index.md | 8 - .../index.md | 4 - .../navigation_timing/index.md | 6 - files/ko/web/css/comments/index.md | 2 +- .../mastering_margin_collapsing/index.md | 4 - files/ko/web/css/css_colors/index.md | 4 - .../css/css_compositing_and_blending/index.md | 4 - files/ko/web/css/css_filter_effects/index.md | 4 - files/ko/web/css/pseudo-elements/index.md | 33 +++- .../css/using_css_custom_properties/index.md | 4 - .../web/http/headers/x-forwarded-for/index.md | 4 - .../http/headers/x-forwarded-host/index.md | 4 - .../javascript/guide/typed_arrays/index.md | 4 - .../ko/web/media/formats/containers/index.md | 176 +++++++++++++++++- 18 files changed, 208 insertions(+), 65 deletions(-) diff --git a/files/ko/glossary/origin/index.md b/files/ko/glossary/origin/index.md index d9194317bda90e..cc98468a73303a 100644 --- a/files/ko/glossary/origin/index.md +++ b/files/ko/glossary/origin/index.md @@ -22,10 +22,6 @@ slug: Glossary/Origin | `http://example.com` `http://www.example.com` `http://myapp.example.com` | 다른 호스트 | | `http://example.com` `http://example.com:8080` | 다른 포트 | -## 명세 - -{{Specifications}} - ## 더 알아보기 - [동일 출처 정책](/ko/docs/Web/Security/Same-origin_policy) diff --git a/files/ko/glossary/truthy/index.md b/files/ko/glossary/truthy/index.md index 2e91a57650e11f..51fe9b0ef280b6 100644 --- a/files/ko/glossary/truthy/index.md +++ b/files/ko/glossary/truthy/index.md @@ -25,10 +25,6 @@ JavaScript는 불리언 문맥에서 {{Glossary("Type_Conversion", "형 변환") if (-Infinity) ``` -## 명세서 - -{{Specifications}} - ## 같이 보기 - {{Glossary("Falsy", "거짓 같은 값")}} diff --git a/files/ko/learn/css/building_blocks/debugging_css/index.md b/files/ko/learn/css/building_blocks/debugging_css/index.md index 95c826a653173a..b4ff2649db4870 100644 --- a/files/ko/learn/css/building_blocks/debugging_css/index.md +++ b/files/ko/learn/css/building_blocks/debugging_css/index.md @@ -163,8 +163,6 @@ DevTools는 CSS 문제를 해결할 때 큰 도움이 될 수 있으므로 CSS 또한 MDN의 각 속성 페이지 하단에 있는 브라우저 호환성 표를 볼 수 있습니다. 이것들은 해당 속성에 대한 브라우저 지원을 보여주며, 속성의 일부 사용에 대한 지원이 있고 다른 것은 지원하지 않는 경우 종종 세분화됩니다. 아래 표는 {{cssxref("shape-outside")}} 속성에 대한 호환성 데이터를 보여줍니다. -{{Compat}} - ### 다른 것이 CSS를 무시합니까? 여기서 특정성에 대해 배운 정보가 매우 유용할 것입니다. 당신이 하려고 하는 것을 무시하는 더 구체적인 무언가가 있다면, 당신은 무엇을 해결하려고 하는 매우 실망스러운 게임에 들어갈 수 있습니다. 그러나 위에서 설명한 대로 DevTools는 CSS가 적용되는 내용을 보여주고 이를 재정의하기에 충분히 구체적인 새 선택기를 만드는 방법을 알아낼 수 있습니다. diff --git a/files/ko/web/api/audioworkletprocessor/process/index.md b/files/ko/web/api/audioworkletprocessor/process/index.md index c858c41edf7ec9..52f15281cf98e4 100644 --- a/files/ko/web/api/audioworkletprocessor/process/index.md +++ b/files/ko/web/api/audioworkletprocessor/process/index.md @@ -130,7 +130,7 @@ class WhiteNoiseProcessor extends AudioWorkletProcessor { ## 브라우저 호환성 -{{Compat}} +브라우저에서 제공하는 메서드가 아니라 클라이언트 코드로 작성해야 하는 콜백 메서드입니다. ## 같이 보기 diff --git a/files/ko/web/api/fetch_api/using_fetch/index.md b/files/ko/web/api/fetch_api/using_fetch/index.md index b4b62071964dd8..d66c4f82aaa3cf 100644 --- a/files/ko/web/api/fetch_api/using_fetch/index.md +++ b/files/ko/web/api/fetch_api/using_fetch/index.md @@ -472,14 +472,6 @@ if (window.fetch) { } ``` -## 명세서 - -{{Specifications}} - -## 브라우저 호환성 - -{{Compat}} - ## 같이 보기 - [ServiceWorker API](/ko/docs/Web/API/ServiceWorker_API) diff --git a/files/ko/web/api/file_api/using_files_from_web_applications/index.md b/files/ko/web/api/file_api/using_files_from_web_applications/index.md index ecf61b5aeec0ff..9e4c39324bbcfe 100644 --- a/files/ko/web/api/file_api/using_files_from_web_applications/index.md +++ b/files/ko/web/api/file_api/using_files_from_web_applications/index.md @@ -577,10 +577,6 @@ video.play(); window.URL.revokeObjectURL(obj_url); ``` -## 명세서 - -{{Specifications}} - ## See also - {{DOMxRef("File")}} diff --git a/files/ko/web/api/performance_api/navigation_timing/index.md b/files/ko/web/api/performance_api/navigation_timing/index.md index 36f07c6285baa9..8e4b4f451c5e0d 100644 --- a/files/ko/web/api/performance_api/navigation_timing/index.md +++ b/files/ko/web/api/performance_api/navigation_timing/index.md @@ -74,9 +74,3 @@ var connectTime = perfData.responseEnd - perfData.requestStart; - [Test Page](http://webtimingdemo.appspot.com/) - - - -### 브라우저 호환 - -### `Window.performance.timing` - -{{Compat}} diff --git a/files/ko/web/css/comments/index.md b/files/ko/web/css/comments/index.md index d1192cd6731e72..c2aa008f36a512 100644 --- a/files/ko/web/css/comments/index.md +++ b/files/ko/web/css/comments/index.md @@ -43,7 +43,7 @@ span { ## 명세 -{{Specifications}} +- [CSS 2.1 구문과 기본 데이터 형식 #comments](https://www.w3.org/TR/CSS21/syndata.html#comments) ## 같이 보기 diff --git a/files/ko/web/css/css_box_model/mastering_margin_collapsing/index.md b/files/ko/web/css/css_box_model/mastering_margin_collapsing/index.md index a403d5d1dc0748..cca50c4d907f4a 100644 --- a/files/ko/web/css/css_box_model/mastering_margin_collapsing/index.md +++ b/files/ko/web/css/css_box_model/mastering_margin_collapsing/index.md @@ -66,7 +66,3 @@ p { ### 결과 {{EmbedLiveSample('예제', 'auto', 350)}} - -## 명세 - -{{Specifications}} diff --git a/files/ko/web/css/css_colors/index.md b/files/ko/web/css/css_colors/index.md index 7995951e7d7329..03ea13e4f447ab 100644 --- a/files/ko/web/css/css_colors/index.md +++ b/files/ko/web/css/css_colors/index.md @@ -33,10 +33,6 @@ slug: Web/CSS/CSS_colors {{Specifications}} -## 브라우저 호환성 - -{{Compat}} - ## 같이 보기 - 다른 사양의 일부 색상 관련 속성 : {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}}, and {{cssxref("column-rule-color")}} diff --git a/files/ko/web/css/css_compositing_and_blending/index.md b/files/ko/web/css/css_compositing_and_blending/index.md index 2a1b3c838a3768..9d4eaad057889b 100644 --- a/files/ko/web/css/css_compositing_and_blending/index.md +++ b/files/ko/web/css/css_compositing_and_blending/index.md @@ -22,7 +22,3 @@ slug: Web/CSS/CSS_compositing_and_blending ## 명세서 {{Specifications}} - -## 브라우저 호환성 - -{{Compat}} diff --git a/files/ko/web/css/css_filter_effects/index.md b/files/ko/web/css/css_filter_effects/index.md index f2829d2a4c39ea..4a80b583b81a59 100644 --- a/files/ko/web/css/css_filter_effects/index.md +++ b/files/ko/web/css/css_filter_effects/index.md @@ -21,7 +21,3 @@ slug: Web/CSS/CSS_filter_effects ## 명세 {{Specifications}} - -## 브라우저 호환성 - -{{Compat}} diff --git a/files/ko/web/css/pseudo-elements/index.md b/files/ko/web/css/pseudo-elements/index.md index a8d23e2031d041..3d206d337e1c6d 100644 --- a/files/ko/web/css/pseudo-elements/index.md +++ b/files/ko/web/css/pseudo-elements/index.md @@ -52,7 +52,38 @@ selector::pseudo-element { ## 브라우저 호환성 -{{compat}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
브라우저최소 버전지원
Firefox (Gecko)1.0 (1.0):pseudo-element
1.0 (1.5):pseudo-element ::pseudo-element
Opera4.0:pseudo-element
7.0:pseudo-element ::pseudo-element
Safari (WebKit)1.0 (85):pseudo-element ::pseudo-element
## 같이 보기 diff --git a/files/ko/web/css/using_css_custom_properties/index.md b/files/ko/web/css/using_css_custom_properties/index.md index 2900953e7cee0c..13f280000550b5 100644 --- a/files/ko/web/css/using_css_custom_properties/index.md +++ b/files/ko/web/css/using_css_custom_properties/index.md @@ -263,10 +263,6 @@ getComputedStyle(element).getPropertyValue("--my-var"); element.style.setProperty("--my-var", jsVar + 4); ``` -## 브라우저 호환성 - -{{Compat}} - ## 같이 보기 - {{cssxref("--*", "사용자 지정 속성")}} diff --git a/files/ko/web/http/headers/x-forwarded-for/index.md b/files/ko/web/http/headers/x-forwarded-for/index.md index eaa1b1a17997ae..010dfbf4f7d92f 100644 --- a/files/ko/web/http/headers/x-forwarded-for/index.md +++ b/files/ko/web/http/headers/x-forwarded-for/index.md @@ -60,10 +60,6 @@ X-ProxyUser-Ip: 203.0.113.19 현재 어떠한 표준 명세에도 속하지 않는다. 이 헤더의 표준화 버전은 {{HTTPHeader("Forwarded")}} 이다. -## 브라우저 호환성 - -{{Compat}} - ## 함께 참고할 내용 - {{HTTPHeader("Forwarded")}} diff --git a/files/ko/web/http/headers/x-forwarded-host/index.md b/files/ko/web/http/headers/x-forwarded-host/index.md index 4d7f8ff439f679..4e2edf283ccb21 100644 --- a/files/ko/web/http/headers/x-forwarded-host/index.md +++ b/files/ko/web/http/headers/x-forwarded-host/index.md @@ -47,10 +47,6 @@ X-Forwarded-Host: id42.example-cdn.com 현재 어떠한 표준 명세에도 속하지 않는다. 이 헤더의 표준화 버전은 {{HTTPHeader("Forwarded")}} 입니다. -## 브라우저 호환성 - -{{Compat}} - ## 함께 참고할 내용 - {{HTTPHeader("Host")}} diff --git a/files/ko/web/javascript/guide/typed_arrays/index.md b/files/ko/web/javascript/guide/typed_arrays/index.md index 06697177b81aa2..880096e1eeb84d 100644 --- a/files/ko/web/javascript/guide/typed_arrays/index.md +++ b/files/ko/web/javascript/guide/typed_arrays/index.md @@ -150,10 +150,6 @@ normalArray.length === 4; normalArray.constructor === Array; ``` -## 명세서 - -{{Specifications}} - ## 참조 - [*Base64*로 인코딩된 문자열에서 `ArrayBuffer` 또는 형식화 배열 얻기](/ko/docs/Web/JavaScript/Base64_encoding_and_decoding#Appendix.3A_Decode_a_Base64_string_to_Uint8Array_or_ArrayBuffer) diff --git a/files/ko/web/media/formats/containers/index.md b/files/ko/web/media/formats/containers/index.md index 565f85f49fe541..720b9ce444516c 100644 --- a/files/ko/web/media/formats/containers/index.md +++ b/files/ko/web/media/formats/containers/index.md @@ -1048,11 +1048,183 @@ WebM은 2010년 처음 소개되었습니다.. ## 명세서 -{{Specifications}} +| 명세서 | 설명 | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | +| [ETSI 3GPP](https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1441) | 컨테이너 포멧을 정의 | +| [ISO/IEC 14496-3](https://www.iso.org/standard/53943.html) (MPEG-4 Part 3 오디오) | ADTS를 포함한 MP4 오디오를 정의 | +| [FLAC Format](https://xiph.org/flac/format.html) | FLAC 포멧 명세서 | +| [ISO/IEC 11172-1](https://www.iso.org/standard/19180.html) (MPEG-1 Part 1 시스템) | MPEG-1 컨테이너 포멧을 정의 | +| [ISO/IEC 13818-1](https://www.iso.org/standard/74427.html) (MPEG-2 Part 1 시스템) | MPEG-2 컨테이너 포멧을 정의 | +| [ISO/IEC 14496-14](https://www.iso.org/standard/75929.html) (MPEG-4 Part 14: MP4 파일 포멧) | MPEG-4 (MP4) version 2 컨테이너 포멧을 정의 | +| [ISO/IEC 14496-1](https://www.iso.org/standard/55688.html) (MPEG-4 Part 1 시스템) | original MPEG-4 (MP4) 컨테이너 포멧을 정의 | +| {{RFC(3533)}} | Ogg 컨테이너 포멧 | +| {{RFC(5334)}} | Ogg 미디어 형식과 파일 확장자 | +| [QuickTime File Format Specification](https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html) | QuickTime movie (MOV) 포멧 | +| [Multimedia Programming Interface and Data Specifications 1.0](https://web.archive.org/web/20090417165828/http://www.kk.iij4u.or.jp/~kondo/wave/mpidata.txt) | 공식 WAVE 사양에 가장 가까운 것 | +| [Resource Interchange File Format](https://docs.microsoft.com/windows/win32/xaudio2/resource-interchange-file-format--riff-) (WAV가 씀) | RIFF 포멧을 정의. WAVE 파일은 RIFF의 형식 | +| [WebM Container Guidelines](https://www.webmproject.org/docs/container/) | WebM을 위한 Matroska 적용 안내서 | +| [Matroska Specifications](https://matroska.org/index.html) | WebM을 기반으로 하는 Matroska 컨테이너 포멧에 대한 명세서 | +| [WebM Byte Stream Format](https://w3c.github.io/media-source/webm-byte-stream-format.html) | [미디어 소스 확장자](/ko/docs/Web/API/Media_Source_Extensions_API)와 함께 사용하기 위한 WebM 바이트 스트림 포멧 | ## 브라우저 호환성 -{{compat}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ 컨테이너 형식 이름 + + 오디오 + 비디오
MIME 형식확장자 + 브라우저 지원 + MIME 형식확장자 + 브라우저 지원 +
3GPaudio/3gpp.3gp + Firefox + video/3gpp.3gpFirefox
+ ADTS (Audio Data Transport Stream) + audio/aac.aac + Firefox +
FLACaudio/flac.flac + Firefox +
+ MPEG-1 / MPEG-2 (MPG or MPEG) + audio/mpeg + .mpg
.mpeg +
+ Firefox + video/mpeg + .mpg
.mpeg +
Firefox
audio/mp3.mp3 + Firefox +
MPEG-4 (MP4)audio/mp4 + .mp4
.m4a +
+ Firefox + video/mp4 + .mp4
.m4v
.m4p +
Firefox
Oggaudio/ogg + .oga
.ogg +
+ Firefox + video/ogg + .ogv
.ogg +
Firefox
QuickTime Movie (MOV)video/quicktime.movSafari
WAV (Waveform Audiofile)audio/wav.wav + Firefox +
WebMaudio/webm.webm + Firefox + video/webm.webmFirefox
## 더 보기