Skip to content

Commit 8ebc0c9

Browse files
committed
release 2020-04-29-38
1 parent 3f35234 commit 8ebc0c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+300
-167
lines changed

โ€Ž.bookignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
script
2+
.markdownlint.json
3+
markdownlintignore
4+
.travis.yml
5+
publish.sh
6+
package.json
7+
package-lock.json

โ€Ž_gitbook_plugin_analytics.js

-9
This file was deleted.

โ€Žbook.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"plugins": ["theme-darkblue", "addcssjs", "highlight-1", "custom-favicon", "forkmegithub", "sitemap-general", "sitemap", "analytics"],
2+
"plugins": ["theme-darkblue", "addcssjs", "highlight-1", "custom-favicon", "forkmegithub", "sitemap-general", "sitemap", "ga"],
33
"pluginsConfig": {
44
"sitemap-general": {
55
"prefix": "https://typescript-kr.gitbooks.io/"
@@ -18,8 +18,8 @@
1818
"sitemap": {
1919
"hostname": "https://typescript-kr.github.io/"
2020
},
21-
"analytics": {
22-
"google": "UA-163809183-2"
21+
"ga": {
22+
"token": "UA-163809183-2"
2323
}
2424
},
2525
"styles": {
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
require(["gitbook"], function(gitbook) {
2+
// Load analytics.js
3+
gitbook.events.bind("start", function(e, config) {
4+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
5+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
6+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
7+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
8+
9+
var cfg = config.ga;
10+
ga('create', cfg.token, cfg.configuration);
11+
});
12+
13+
// Notify pageview
14+
gitbook.events.bind("page.change", function() {
15+
ga('send', 'pageview', window.location.pathname+window.location.search);
16+
});
17+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
pre,
2+
code {
3+
/* http://jmblog.github.io/color-themes-for-highlightjs */
4+
/* Tomorrow Comment */
5+
/* Tomorrow Red */
6+
/* Tomorrow Orange */
7+
/* Tomorrow Yellow */
8+
/* Tomorrow Green */
9+
/* Tomorrow Aqua */
10+
/* Tomorrow Blue */
11+
/* Tomorrow Purple */
12+
}
13+
pre .hljs-comment,
14+
code .hljs-comment,
15+
pre .hljs-title,
16+
code .hljs-title {
17+
color: #8e908c;
18+
}
19+
pre .hljs-variable,
20+
code .hljs-variable,
21+
pre .hljs-attribute,
22+
code .hljs-attribute,
23+
pre .hljs-tag,
24+
code .hljs-tag,
25+
pre .hljs-regexp,
26+
code .hljs-regexp,
27+
pre .hljs-deletion,
28+
code .hljs-deletion,
29+
pre .ruby .hljs-constant,
30+
code .ruby .hljs-constant,
31+
pre .xml .hljs-tag .hljs-title,
32+
code .xml .hljs-tag .hljs-title,
33+
pre .xml .hljs-pi,
34+
code .xml .hljs-pi,
35+
pre .xml .hljs-doctype,
36+
code .xml .hljs-doctype,
37+
pre .html .hljs-doctype,
38+
code .html .hljs-doctype,
39+
pre .css .hljs-id,
40+
code .css .hljs-id,
41+
pre .css .hljs-class,
42+
code .css .hljs-class,
43+
pre .css .hljs-pseudo,
44+
code .css .hljs-pseudo {
45+
color: #c82829;
46+
}
47+
pre .hljs-number,
48+
code .hljs-number,
49+
pre .hljs-preprocessor,
50+
code .hljs-preprocessor,
51+
pre .hljs-pragma,
52+
code .hljs-pragma,
53+
pre .hljs-built_in,
54+
code .hljs-built_in,
55+
pre .hljs-literal,
56+
code .hljs-literal,
57+
pre .hljs-params,
58+
code .hljs-params,
59+
pre .hljs-constant,
60+
code .hljs-constant {
61+
color: #f5871f;
62+
}
63+
pre .ruby .hljs-class .hljs-title,
64+
code .ruby .hljs-class .hljs-title,
65+
pre .css .hljs-rules .hljs-attribute,
66+
code .css .hljs-rules .hljs-attribute {
67+
color: #eab700;
68+
}
69+
pre .hljs-string,
70+
code .hljs-string,
71+
pre .hljs-value,
72+
code .hljs-value,
73+
pre .hljs-inheritance,
74+
code .hljs-inheritance,
75+
pre .hljs-header,
76+
code .hljs-header,
77+
pre .hljs-addition,
78+
code .hljs-addition,
79+
pre .ruby .hljs-symbol,
80+
code .ruby .hljs-symbol,
81+
pre .xml .hljs-cdata,
82+
code .xml .hljs-cdata {
83+
color: #718c00;
84+
}
85+
pre .css .hljs-hexcolor,
86+
code .css .hljs-hexcolor {
87+
color: #3e999f;
88+
}
89+
pre .hljs-function,
90+
code .hljs-function,
91+
pre .python .hljs-decorator,
92+
code .python .hljs-decorator,
93+
pre .python .hljs-title,
94+
code .python .hljs-title,
95+
pre .ruby .hljs-function .hljs-title,
96+
code .ruby .hljs-function .hljs-title,
97+
pre .ruby .hljs-title .hljs-keyword,
98+
code .ruby .hljs-title .hljs-keyword,
99+
pre .perl .hljs-sub,
100+
code .perl .hljs-sub,
101+
pre .javascript .hljs-title,
102+
code .javascript .hljs-title,
103+
pre .coffeescript .hljs-title,
104+
code .coffeescript .hljs-title {
105+
color: #4271ae;
106+
}
107+
pre .hljs-keyword,
108+
code .hljs-keyword,
109+
pre .javascript .hljs-function,
110+
code .javascript .hljs-function {
111+
color: #8959a8;
112+
}
113+
pre .hljs,
114+
code .hljs {
115+
display: block;
116+
background: white;
117+
color: #4d4d4c;
118+
padding: 0.5em;
119+
}
120+
pre .coffeescript .javascript,
121+
code .coffeescript .javascript,
122+
pre .javascript .xml,
123+
code .javascript .xml,
124+
pre .tex .hljs-formula,
125+
code .tex .hljs-formula,
126+
pre .xml .javascript,
127+
code .xml .javascript,
128+
pre .xml .vbscript,
129+
code .xml .vbscript,
130+
pre .xml .css,
131+
code .xml .css,
132+
pre .xml .hljs-cdata,
133+
code .xml .hljs-cdata {
134+
opacity: 0.5;
135+
}

โ€Žgitbook/gitbook-plugin-livereload/plugin.js

-11
This file was deleted.

โ€Žindex.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ <h2 id="&#xCEE8;&#xD2B8;&#xB9AC;&#xBDF0;&#xD130;-&#xBAA9;&#xB85D;-&#x2728;">&#xC
798798
<!-- ALL-CONTRIBUTORS-LIST:END -->
799799
<p><a href="https://github.com/yeonjuan/TypeScript-Handbook-ko" target="_blank">&#xB9C8;&#xC774;&#xADF8;&#xB808;&#xC774;&#xC158;&#xB41C; &#xD504;&#xB85C;&#xC81D;&#xD2B8;</a>&#xC758; &#xCEE8;&#xD2B8;&#xB9AC;&#xBDF0;&#xD130;&#xB3C4; &#xD3EC;&#xD568;&#xB41C; &#xBAA9;&#xB85D; &#xC785;&#xB2C8;&#xB2E4; :)</p>
800800
<p>This project follows the <a href="https://github.com/all-contributors/all-contributors" target="_blank">all-contributors</a> specification. Contributions of any kind welcome!</p>
801-
<script src="_gitbook_plugin_analytics.js"></script>
801+
802802

803803
</section>
804804

@@ -837,7 +837,7 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
837837
<script>
838838
var gitbook = gitbook || [];
839839
gitbook.push(function() {
840-
gitbook.page.hasChanged({"page":{"title":"์†Œ๊ฐœ","level":"1.1","depth":1,"next":{"title":"5๋ถ„ ์•ˆ์— ๋ณด๋Š” TypeScript","level":"2.1","depth":1,"path":"pages/tutorials/TypeScript in 5 minutes.md","ref":"pages/tutorials/TypeScript in 5 minutes.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["theme-darkblue","addcssjs","highlight-1","custom-favicon","forkmegithub","sitemap-general","sitemap","analytics","livereload"],"pluginsConfig":{"github":{"url":"https://github.com/typescript-kr/typescript-kr.github.io"},"livereload":{},"analytics":{"google":"UA-163809183-2"},"search":{},"addcssjs":{"js":[],"css":["assets/css/atom-one-dark.css"]},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sitemap-general":{"prefix":"https://typescript-kr.gitbooks.io/"},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-darkblue":{},"highlight":{},"favicon":"assets/images/favicon.ico","sitemap":{"hostname":"https://typescript-kr.github.io/"},"highlight-1":{},"custom-favicon":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"forkmegithub":{"color":"darkblue","url":"https://github.com/typescript-kr/typescript-kr.github.io"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"assets/css/website.css"}},"file":{"path":"README.md","mtime":"2020-04-28T16:46:01.160Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-04-28T23:50:57.148Z"},"basePath":".","book":{"language":""}});
840+
gitbook.page.hasChanged({"page":{"title":"์†Œ๊ฐœ","level":"1.1","depth":1,"next":{"title":"5๋ถ„ ์•ˆ์— ๋ณด๋Š” TypeScript","level":"2.1","depth":1,"path":"pages/tutorials/TypeScript in 5 minutes.md","ref":"pages/tutorials/TypeScript in 5 minutes.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["theme-darkblue","addcssjs","highlight-1","custom-favicon","forkmegithub","sitemap-general","sitemap","ga"],"pluginsConfig":{"github":{"url":"https://github.com/typescript-kr/typescript-kr.github.io"},"search":{},"addcssjs":{"js":[],"css":["assets/css/atom-one-dark.css"]},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sitemap-general":{"prefix":"https://typescript-kr.gitbooks.io/"},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-darkblue":{},"highlight":{},"favicon":"assets/images/favicon.ico","sitemap":{"hostname":"https://typescript-kr.github.io/"},"highlight-1":{},"custom-favicon":{},"ga":{"configuration":"auto","token":"UA-163809183-2"},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"forkmegithub":{"color":"darkblue","url":"https://github.com/typescript-kr/typescript-kr.github.io"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"assets/css/website.css"}},"file":{"path":"README.md","mtime":"2020-04-29T12:45:06.633Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-04-29T13:40:19.688Z"},"basePath":".","book":{"language":""}});
841841
});
842842
</script>
843843
</div>
@@ -852,7 +852,7 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
852852

853853

854854

855-
<script src="gitbook/gitbook-plugin-livereload/plugin.js"></script>
855+
<script src="gitbook/gitbook-plugin-ga/plugin.js"></script>
856856

857857

858858

โ€Žpackage-lock.json

+3-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

โ€Žpackage.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
"dependencies": {
77
"gitbook-cli": "^2.3.2",
88
"gitbook-plugin-addcssjs": "^1.0.2",
9-
"gitbook-plugin-analytics": "^0.2.1",
109
"gitbook-plugin-custom-favicon": "^0.0.4",
1110
"gitbook-plugin-favicon": "^0.0.2",
1211
"gitbook-plugin-forkmegithub": "^2.2.0",
13-
"gitbook-plugin-ga": "^2.0.0",
12+
"gitbook-plugin-ga": "^1.0.0",
1413
"gitbook-plugin-highlight-1": "^2.0.3",
1514
"gitbook-plugin-sitemap": "^1.2.0",
1615
"gitbook-plugin-sitemap-general": "^0.1.1",

โ€Žpages/Advanced Types.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@ <h3 id="&#xC608;&#xC81C;">&#xC608;&#xC81C;</h3>
17711771
<blockquote>
17721772
<p>Note: <code>Exclude</code> &#xD0C0;&#xC785;&#xC740; <a href="https://github.com/Microsoft/TypeScript/issues/12215#issuecomment-307871458" target="_blank">&#xC5EC;&#xAE30;</a>&#xC5D0;&#xC11C; &#xC81C;&#xC548;&#xB41C; <code>Diff</code> &#xD0C0;&#xC785;&#xC758; &#xC801;&#xC808;&#xD55C; &#xAD6C;&#xD604;&#xC785;&#xB2C8;&#xB2E4;. <code>Diff</code>&#xB97C; &#xC815;&#xC758;&#xD55C; &#xCF54;&#xB4DC;&#xC640;&#xC758; &#xCDA9;&#xB3CC;&#xC744; &#xD53C;&#xD558;&#xAE30; &#xC704;&#xD574; <code>Exclude</code>&#xB97C; &#xC0AC;&#xC6A9;&#xD588;&#xACE0;, &#xB610; &#xC774; &#xC774;&#xB984;&#xC774; &#xD0C0;&#xC785;&#xC758; &#xC758;&#xBBF8;&#xB97C; &#xB354; &#xC798; &#xC804;&#xB2EC;&#xD55C;&#xB2E4;&#xACE0; &#xB290;&#xAF08;&#xC2B5;&#xB2C8;&#xB2E4;.</p>
17731773
</blockquote>
1774-
<script src="../_gitbook_plugin_analytics.js"></script>
1774+
17751775

17761776
</section>
17771777

@@ -1814,7 +1814,7 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
18141814
<script>
18151815
var gitbook = gitbook || [];
18161816
gitbook.push(function() {
1817-
gitbook.page.hasChanged({"page":{"title":"๊ณ ๊ธ‰ ํƒ€์ž…","level":"3.10","depth":1,"next":{"title":"์‹ฌ๋ณผ","level":"3.11","depth":1,"path":"pages/Symbols.md","ref":"pages/Symbols.md","articles":[]},"previous":{"title":"ํƒ€์ž… ํ˜ธํ™˜์„ฑ","level":"3.9","depth":1,"path":"pages/Type Compatibility.md","ref":"pages/Type Compatibility.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["theme-darkblue","addcssjs","highlight-1","custom-favicon","forkmegithub","sitemap-general","sitemap","analytics","livereload"],"pluginsConfig":{"github":{"url":"https://github.com/typescript-kr/typescript-kr.github.io"},"livereload":{},"analytics":{"google":"UA-163809183-2"},"search":{},"addcssjs":{"js":[],"css":["assets/css/atom-one-dark.css"]},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sitemap-general":{"prefix":"https://typescript-kr.gitbooks.io/"},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-darkblue":{},"highlight":{},"favicon":"assets/images/favicon.ico","sitemap":{"hostname":"https://typescript-kr.github.io/"},"highlight-1":{},"custom-favicon":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"forkmegithub":{"color":"darkblue","url":"https://github.com/typescript-kr/typescript-kr.github.io"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"assets/css/website.css"}},"file":{"path":"pages/Advanced Types.md","mtime":"2020-04-28T16:46:01.176Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-04-28T23:50:57.148Z"},"basePath":"..","book":{"language":""}});
1817+
gitbook.page.hasChanged({"page":{"title":"๊ณ ๊ธ‰ ํƒ€์ž…","level":"3.10","depth":1,"next":{"title":"์‹ฌ๋ณผ","level":"3.11","depth":1,"path":"pages/Symbols.md","ref":"pages/Symbols.md","articles":[]},"previous":{"title":"ํƒ€์ž… ํ˜ธํ™˜์„ฑ","level":"3.9","depth":1,"path":"pages/Type Compatibility.md","ref":"pages/Type Compatibility.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["theme-darkblue","addcssjs","highlight-1","custom-favicon","forkmegithub","sitemap-general","sitemap","ga"],"pluginsConfig":{"github":{"url":"https://github.com/typescript-kr/typescript-kr.github.io"},"search":{},"addcssjs":{"js":[],"css":["assets/css/atom-one-dark.css"]},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sitemap-general":{"prefix":"https://typescript-kr.gitbooks.io/"},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-darkblue":{},"highlight":{},"favicon":"assets/images/favicon.ico","sitemap":{"hostname":"https://typescript-kr.github.io/"},"highlight-1":{},"custom-favicon":{},"ga":{"configuration":"auto","token":"UA-163809183-2"},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"forkmegithub":{"color":"darkblue","url":"https://github.com/typescript-kr/typescript-kr.github.io"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"assets/css/website.css"}},"file":{"path":"pages/Advanced Types.md","mtime":"2020-04-29T12:45:06.658Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-04-29T13:40:19.688Z"},"basePath":"..","book":{"language":""}});
18181818
});
18191819
</script>
18201820
</div>
@@ -1829,7 +1829,7 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
18291829

18301830

18311831

1832-
<script src="../gitbook/gitbook-plugin-livereload/plugin.js"></script>
1832+
<script src="../gitbook/gitbook-plugin-ga/plugin.js"></script>
18331833

18341834

18351835

0 commit comments

Comments
ย (0)