From 20a03d35bf8f60592c9aa83a1c230f95ef707fd3 Mon Sep 17 00:00:00 2001 From: IMHOJEONG <39ghwjd@naver.com> Date: Sat, 7 Oct 2023 02:15:34 +0900 Subject: [PATCH] [add]: add index.md for web/glossary/whitespace --- files/ko/glossary/whitespace/index.md | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 files/ko/glossary/whitespace/index.md diff --git a/files/ko/glossary/whitespace/index.md b/files/ko/glossary/whitespace/index.md new file mode 100644 index 00000000000000..5becef684a9666 --- /dev/null +++ b/files/ko/glossary/whitespace/index.md @@ -0,0 +1,34 @@ +--- +title: 공백 (Whitespace) +slug: Glossary/Whitespace +l10n: + sourceCommit: d842f8c32316dbe36cff9fc5e0e777602e32d958 +--- + +{{GlossarySidebar}} + +**공백(Whitespace)** 은 다른 문자 사이에 가로 또는 세로 간격을 제공하는 데 사용되는 {{Glossary("Character", "문자열")}}을 나타냅니다. 공백은 {{Glossary("HTML")}}, {{Glossary("CSS")}}, {{Glossary("JavaScript")}} 및 기타 컴퓨터 언어에서 토큰을 구분하는 데 자주 사용됩니다. + +공백 문자와 사용법은 언어마다 차이가 있습니다. + +## HTML에서 + +[Infra Living Standard](https://infra.spec.whatwg.org/#ascii-whitespace)에서는 5개의 문자를 '{{Glossary("ASCII")}} 공백'으로 정의합니다(U+0009 TAB, U+000A LF, U+000C FF, U+000D CR 및 U+0020 SPACE). + +## JavaScript에서 + +[ECMAScript 언어 명세서](https://tc39.es/ecma262/multipage/ecmascript-language-lexical-grammar.html#sec-white-space)는 여러 유니코드 코드 포인트를 '공백'으로 정의합니다(U+0009 CHARACTER TABULATION \, U+000B LINE TABULATION \, U+000C FORM FEED \, U+0020 SPACE \, U+00A0 NO-BREAK SPACE \, U+FEFF ZERO WIDTH NO-BREAK SPACE \ 및 기타 유니코드 "Space_Separator" 코드 포인트 \). + +## 같이 보기 + +- 위키백과의 [공백 문자](https://en.wikipedia.org/wiki/Whitespace_character) +- [HTML, CSS 및 DOM에서 공백을 처리하는 방법](/ko/docs/Web/API/Document_Object_Model/Whitespace) +- {{cssxref("white-space")}} +- 명세서 + + - [ASCII 공백 명세](https://infra.spec.whatwg.org/#ascii-whitespace) + - [ECMAScript 언어 명세서](https://tc39.es/ecma262/multipage/ecmascript-language-lexical-grammar.html#sec-white-space) + +- [용어 사전](/ko/docs/Glossary) + + 1. {{Glossary("Character")}}