diff options
| author | alattalatta <urty5656@gmail.com> | 2021-12-28 21:39:28 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-28 21:39:28 +0900 |
| commit | 647233140ae70dc89c1fc05e599aac895ac8eec4 (patch) | |
| tree | 40355be40d1f64175587f1daa2ef8e7124194a28 /files/ko/web/javascript/guide/modules | |
| parent | 313b18c1697faa9bf94c0892e994e39dacdf8dd0 (diff) | |
| download | translated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.tar.gz translated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.tar.bz2 translated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.zip | |
Remove all <font> from Web/JavaScript (#3349)
* Remove occurrences of <font> from Web/JavaScript
* [CRON] sync translated content
Co-authored-by: MDN <actions@users.noreply.github.com>
Co-authored-by: Masahiro FUJIMOTO <mfujimot@gmail.com>
Diffstat (limited to 'files/ko/web/javascript/guide/modules')
| -rw-r--r-- | files/ko/web/javascript/guide/modules/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/guide/modules/index.html b/files/ko/web/javascript/guide/modules/index.html index b64319b4da..c1b34f1cf1 100644 --- a/files/ko/web/javascript/guide/modules/index.html +++ b/files/ko/web/javascript/guide/modules/index.html @@ -334,7 +334,7 @@ export { name } from 'x.js'</pre> <p><strong>주의</strong>: 이것은 실제로 import 의 줄임말이고, 그 뒤에 export가 옵니다. 예를들면, "나는 모듈 <code>x.js</code>를 가져온 다음, 일부 또는 전부를 export 하겠다" 라는 뜻입니다.</p> </div> -<p>예를들어 <a href="https://github.com/mdn/js-examples/tree/master/modules/module-aggregation">module-aggregation</a> 디렉토리를 참조하겠습니다. 이 예제에서는 이전 클래스 예제를 기반으로 <code>circle.js</code>, <code>square.js</code>, <code>triangle.js</code> 의 모든 기능을 함께 모으는 <code>shapes.js</code>라는 추가 모듈이 있습니다. 또한 우리는 <font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);">shapes</span></font> <code>모듈</code> 디렉토리 안에 있는 서브 디렉토리 내에서 서브 모듈을 이동 시켰습니다. 이제 모듈 구조는 다음과 같습니다.</p> +<p>예를들어 <a href="https://github.com/mdn/js-examples/tree/master/modules/module-aggregation">module-aggregation</a> 디렉토리를 참조하겠습니다. 이 예제에서는 이전 클래스 예제를 기반으로 <code>circle.js</code>, <code>square.js</code>, <code>triangle.js</code> 의 모든 기능을 함께 모으는 <code>shapes.js</code>라는 추가 모듈이 있습니다. 또한 우리는 <code>shapes</code> 모듈 디렉토리 안에 있는 서브 디렉토리 내에서 서브 모듈을 이동 시켰습니다. 이제 모듈 구조는 다음과 같습니다.</p> <pre>modules/ canvas.js |
