-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
1038 lines (984 loc) · 48.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<html lang="en">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Docsie.io - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="content-language" content="en" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Likalo LLC">
<meta name="application-name" content="Docsie" />
<meta name="theme-color" content="#fff" />
<meta name="msapplication-TileColor" content="#fff" />
<meta name="msapplication-TileImage"
content="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/mstile-144x144.png" />
<meta name="msapplication-square310x310logo"
content="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/mstile-310x310.png" />
<meta name=description content="Docsie helps businesses write, translate and manage better product documentation">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="Write documentation your customers love">
<meta itemprop="description"
content="Docsie helps businesses write, translate and manage better product documentation">
<meta itemprop="image" content="https://www.docsie.io/logo.png">
<!-- Twitter Card data -->
<meta name="twitter:card" content="https://www.docsie.io/logo.png">
<meta name="twitter:site" content="@docsie_io">
<meta name="twitter:title" content="Write documentation your customers love">
<meta name="twitter:description"
content="Docsie helps businesses write, translate and manage better product documentation">
<meta name="twitter:creator" content="@likalo_llc">
<!-- Twitter summary card with large image must be at least 280x150px -->
<meta name="twitter:image:src" content="https://www.docsie.io/logo.png">
<!-- Open Graph data -->
<meta property="og:title" content="Write documentation your customers love" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docsie.io/" />
<meta property="og:image" content="https://www.docsie.io/logo.png" />
<meta property="og:description"
content="Docsie helps businesses write, translate and manage better product documentation" />
<meta property="og:site_name" content="docsie.io" />
<link rel=" apple-touch-icon-precomposed" sizes="57x57"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152"
href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/favicon-196x196.png"
sizes="196x196" />
<link rel="icon" type="image/png" href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/favicon-96x96.png"
sizes="96x96" />
<link rel="icon" type="image/png" href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/favicon-32x32.png"
sizes="32x32" />
<link rel="icon" type="image/png" href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/favicon-16x16.png"
sizes="16x16" />
<link rel="icon" type="image/png" href="https://d1iq6qzgppjlud.cloudfront.net/images/favicon/favicon-128.png"
sizes="128x128" />
<link rel="dns-prefetch" href="https://www.googletagmanager.com">
<script src="https://cdn.jsdelivr.net/npm/share-this/dist/share-this.js"></script>
<script type="text/javascript" async="" src="https://certify-js.alexametrics.com/atrk.js"></script>
<link rel="stylesheet" href='/style.css'>
<link rel="stylesheet" href="/lang-picker.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lazyload.min.js"></script>
<link rel="stylesheet" href='/index.css'>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116930058-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-116930058-3');
</script>
<body>
<a href="#main" class="aria-visible">콘텐츠로 건너 뛰기</a>
<!-- Page Header -->
<header class="gn">
<nav id="topNav">
<ul class="nv-l">
<li><a class="nv-lg" href="/ko" data-nomobile="">
<svg class="lg" width="32" height="40" viewBox="0 0 48 48">
<use xlink:href="#icon-docsie"></use>
</svg>
<svg class="lg-dx" width="110" viewBox="0 0 158 58" xmlns="http://www.w3.org/2000/svg">
<use xlink:href="#icon-logo"></use>
</svg>
</a></li>
<li class="li-dd v-sm">
<button class="li-a" data-toggle="Products">제품군 </button>
<div id="Products" class="ui-tgl" role="dropdown" aria-hidden="true">
<ul>
<li>
<a class="li-hdr" href="//ko">Docsie</a>
<span>스마트 도큐멘테이션 작성 및 amp 퍼블리싱 플랫폼</span>
</li>
<li>
<a class="li-hdr" href="/ko/vocally/">Vocally</a>
<span>친 유저 피드백 수집 및 관리 툴 </span>
</li>
<li><a href="/ko/pricing/">제품 가격 정책 </a></li>
</ul>
</div>
</li>
<li class="li-dd v-sm">
<button class="li-a" data-toggle="Pricing">가격 정책 </button>
<div id="Pricing" class="ui-tgl" role="dropdown" aria-hidden="true">
<ul>
<li>
<a class="li-hdr" href="/ko/pricing/">셀프 서비스 도큐멘테이션 </a>
<span>스마트 도큐멘테이션 작성 및 amp 퍼블리싱 플랫폼</span>
</li>
<li>
<a class="li-hdr" href="/ko/self-writing-documentation/pricing/">Self-Writing
Documentation</a>
<span>AI-enabled documentation writing service that creates, translates, and manages product
documentation for you.</span>
</li>
</ul>
</div>
</li>
<span class="spacer"></span>
<li class="li-dd v-sm">
<button class="li-a" data-toggle="Resources">리소스</button>
<div id="Resources" class="ui-tgl" role="dropdown" aria-hidden="true">
<ul>
<li class="li-hr"><strong>Docsie</strong></li>
<li>
<a class="li-hdr" href="https://portals.docsie.io/docsie/docsie-documentation/using-docsie/">유저 가이드</a>
<span>Learn how our easy & intuitive documentation authoring tools
work</span>
</li>
<li>
<a class="li-hdr" href="https://portals.docsie.io/docsie/docsie-documentation/publish-documentation-portal/">Publishing Guide</a>
<span>Learn how to deploy and publish our solution</span>
</li>
<li>
<a class="li-hdr" href="https://portals.docsie.io/docsie/docsie-documentation/docsie-integrations/">Integration Guides</a>
<span>Learn how to integrate docsie into your solution</span>
</li>
<!--<li>-->
<!--<a class="li-hdr" href="#">Integration</a>-->
<!--<span>Find out how to use Docsie on your website</span>-->
<!--</li>-->
<li>
<a class="li-hdr"
href="/ko/documentation/styling_guide/">다큐멘테이션 커스터마이징 </a>
<span>Learn how to customize Docsie docs to follow your own style and
branding</span>
</li>
</ul>
<ul>
<li class="li-hr"><strong>Vocally</strong></li>
<li>
<a class="li-hdr" href="/ko/vocally/documentation/">Getting
started</a>
<span>Discover our simple & straight-fowrward way to manage user
feedeback</span>
</li>
<li>
<a class="li-hdr" href="/ko/vocally/documentation/configuration/">Configuration</a>
<span>Vocally 툴로 귀하의 도큐멘테이션 생태계를 만들어보세요. </span>
</li>
<li>
<a class="li-hdr" href="/ko/vocally/documentation/integrations/">Integrations</a>
<span>귀사의 제반 툴을 Vocally 툴과 결합해보세요.</span>
</li>
<li>
<a class="li-hdr" href="/ko/vocally/documentation/installation/">Installation</a>
<span>먼저 Vocally 툴을 설치하세요. </span>
</li>
</ul>
</div>
</li>
<li class="v-sm"><a href="/ko/support/">서포트</a></li>
<li class="v-sm"><a class="clr-a" href="https://app.docsie.io/login">로그인 </a></li>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TZRGMQ9');</script>
<!-- End Google Tag Manager -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TZRGMQ9"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</ul>
</nav>
</header>
<!-- Page Content -->
<main id="main">
<div class="pure-docsie ready gn" style="max-width: 100%;">
<article class="docsie-doc">
<header class="docsie-header" id="section-page-header">
<div class="docsie-header-conatiner" role="presentation">
<h1 class="docsie-title">귀하의 고객이 좋아할 다큐멘테이션을 생성하세요. </h1>
<p class="docsie-subtitle">관리하기 쉬운 다큐멘테이션, 이것은 귀하의 팀의 docs 처리
방식을 단순화 합니다. 이 다큐멘테이션으로 시간을 절약하고 고객을 유지하세요.</p>
</div>
</header>
<div class="docsie-content">
<section class="docsie-section docsie-grid accent4">
<div class="docsie-section-container" role="presentation">
<h2 class="docsie-section-title " id="section-header-two-fuvns">제품 다큐멘테이션을 한층 더 좋게 작성해보세요</h2>
<div class="cr-ft">
<figure class="ft-f">
<img src="https://appcdn2.docsie.io/assets/Organize-Documentation.png" alt="Organize documentation" />
<img src="https://appcdn2.docsie.io/assets/Find-Everything-on-Shelves.png" alt="Find everything on the shelves" />
<img src="https://appcdn2.docsie.io/assets/Manage-Translations-and-Versions.png" alt="Manage translations and versions" />
<img src="https://appcdn2.docsie.io/assets/Gather-Actionable-Feedback.png" alt="Gather actionable feedback" />
<img src="https://appcdn2.docsie.io/assets/Publish-to-Your-Website.png" alt="Publish to your website" />
<figcaption></figcaption>
</figure>
<nav class="ft-n v-lg">
<ul>
<li><button data-icon="checkmark">
다뮤멘테이션의 조직을 짜세요
</button></li>
<li><button data-icon="checkmark">
모든 것이 선반에 있습니다. 거기서 찾아보세요.
</button></li>
<li><button data-icon="checkmark">
번역 및 버전을 관리하세요
</button></li>
<li><button data-icon="checkmark">
조치할 수 있는 피드백을 모으세요
</button></li>
<li><button data-icon="checkmark">
귀하의 웹 사이트에 게재하세요.
</button></li>
<li><a href="https://app.docsie.io/manager/?utm=front_page_carouselle">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a></li>
</ul>
</nav>
</div>
<p class="docsie-paragraph h-lg" id="unstyled-5g0j0"><a href="http://docsie.io">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a></p>
</div>
</section>
<section class="docsie-section docsie-checker">
<div class="docsie-section-container" role="presentation">
<!-- <h2 class="docsie-section-title ">Tiled section</h2> -->
<h2 class="docsie-section-title ">Docs가 통일되면 기업들이 함께 모입니다</h2>
<div class="docsie-checker-cell">
<p class="docsie-paragraph" id="unstyled-aphro">Docsie는 제품 다큐멘테이션 작업흐름
을 단순화하고 다수의 다큐멘테이션 툴에 의존해야 하는 번거로움을 없애주기 때문에 Docsie를 사용하는 업체들은 시간을 아낄 수 있습니다. </p>
<!--<a href="http://docsie.io">Learn More <svg class="inl" width="22" height="22" viewBox="0 0 20 20">-->
<!--<use xlink:href="#icon-arrow-right" /></svg></a>-->
</div>
<div class="docsie-checker-cell">
<img src="https://appcdn2.docsie.io/assets/Docsie_Api_Sales_Userguide.png" alt="Images of three customized documnetation hubs for User Guides, API Documentation and Product Documentation"/>
</div>
</div>
</section>
<section class="docsie-section docsie-checker">
<div class="docsie-section-container" role="presentation">
<!-- <h2 class="docsie-section-title ">Tiled section</h2> -->
<h2 class="docsie-section-title ">고객 맞춤 다큐멘테이션 허브 </h2>
<div class="docsie-checker-cell">
<img src="https://appcdn2.docsie.io/assets/Docsie_Product_Documentation.png" alt="Image of two customer documentation hubs made in Docsie" />
</div>
<div class="docsie-checker-cell">
<p class="docsie-paragraph" id="unstyled-aphro">귀사의 브랜드 모습과 느낌을 반영한, 맞춤
제품 다큐멘테이션
허브를 쉽게 생성 게재하려면 Docsie 관리자를 사용하세요. </p>
<!--<a href="http://docsie.io">Learn More <svg class="inl" width="22" height="22" viewBox="0 0 20 20">-->
<!--<use xlink:href="#icon-arrow-right" /></svg></a>-->
</div>
</div>
</section>
<section class="docsie-section docsie-grid grid-2 accent3">
<div class="docsie-section-container" role="presentation">
<h2 class="docsie-section-title">귀하는 좋은 동반자를 만났습니다</h2>
<div class="docsie-section-title">여러 규모의 팀들이 Docsie를 신뢰하고, Docsie를 이용하여 대
내외 제품
다큐멘테이션을 신속하게 생성 관리합니다. </div>
<div class="docsie-grid-cell">
<h2>5,000명 이상의 비즈니스 및 테크놀로지 유저가 믿고 사용하고 있습니다. 😎</h2>
</div>
<div class="docsie-grid-cell">
<h2>1,000 여 비즈니스 다큐멘테이션 포털들이 게재했습니다. 📝</h2>
</div>
</div>
</section>
<section class="docsie-section docsie-grid grid-3 accent3">
<div class="docsie-section-container" role="presentation">
<p class="docsie-section-title">사용자들의 의견은 다음과 같습니다.</p>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p class="comment">
Docsie는 아주 직관적이어서 전 팀이 신속히 이해할 수 있어요. 그래서 우리 팀은 현재 Docsie를 제1 다큐멘테이션 관리 플랫폼으로 사용하고 있어요.
</p>
<img src="https://appcdn2.docsie.io/assets/Testimonial1.svg.png" alt="Docsie is very intuitive for the whole team to grasp quickly. My team uses it as the primary documentation management platform now." />
<p>
<small class="meta">capterra.com</small><br />
<a href="https://www.capterra.com/p/185219/Docsie/reviews/1756087/">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p class="comment">
Docsie는 바로 가기 사용이 가능한 플랫폼이에요. 그리고 내가 도움이 필요 때면 고객 서비스를 아주 잘 해주죠.
</p>
<img src="https://appcdn2.docsie.io/assets/Testimonial2.svg.png" alt="Testimonial by user Their platform is straightforward to use, and they have fantastic customer service whenever I need help!" />
<p>
<small class="meta">capterra.com</small><br />
<a href="https://www.capterra.com/p/185219/Docsie/reviews/1729930/">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p class="comment">
Docsie는, 내가 여러 버전의 문서를 만들고 유지 관리하기 위해서 반복적으로 해야 하는 일을 없애주니 아주 도움이 돼요.
</p>
<img src="https://appcdn2.docsie.io/assets/Testimonial3.svg.png" alt="Testimonial by user Docsie helped me reduce repetitive work required to create and maintain multiple versioned docs." />
<p>
<small class="meta">capterra.com</small><br />
<a href="https://www.capterra.com/p/185219/Docsie/reviews/1757230/">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
</div>
</section>
<section class="docsie-section docsie-grid grid-3">
<div class="docsie-section-container" role="presentation">
<h2 class="docsie-section-title ">귀하의 제품 다큐멘테이션 품질을 한 층 더 개선하세요. </h2>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p>
2020년 최고의 교육 매뉴얼 템플릿 가이드
</p>
<p>
<small class="meta">Blog</small><br />
<a href="https://www.docsie.io/blog/training_manual_template/">자세히 알아보기 <svg class="inl"
width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p>
블로그 GatsbyJS
</p>
<p>
<small class="meta">블로그</small><br />
<a
href="https://www.docsie.io/blog/gatsby_js_as_a_blog/">
을 좀 더 자세히 알아보아 보세요. <svg class="inl" width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
<div class="docsie-grid-cell">
<div class="docsie-card">
<p>
GitHub에 Docsie 호스팅
</p>
<p>
<small class="meta">블로그</small class="meta"><br />
<a href="https://www.docsie.io/blog/publish_docsie_on_github_pages/">자세히 알아보기
<svg class="inl" width="22" height="22" viewBox="0 0 20 20">
<use xlink:href="#icon-arrow-right" /></svg></a>
</p>
</div>
</div>
</div>
</section>
<section class="docsie-section accent2">
<div class="docsie-section-container" role="presentation">
<h2 class="docsie-section-title " id="section-header-two-cfalg">함께 더 나은 다큐멘테이션을 작성해 봅시다.
</h2>
<p class="docsie-paragraph" id="unstyled-b2r7t"></p>
</div>
</section>
</div>
<footer class="docsie-footer">
<nav class="docsie-footer-nav">
</nav>
</footer>
</article>
</div>
</main>
<script src="https://appcdn2.docsie.io/js/feedback/service/1.2.4/service.js"
data-feedback="key:feedback_key_X7VzaPlcS6TrzS5PDmRoFsIU6 ,ratingType:emotions ,color:#0391CE ,logoUrl:https://cdn.docsie.io/feedback_key_9zESOoctHzPgS98kRCekDJcWh/logo.png ,autorecord:true ,position:static"></script>
<footer class="gn">
<!-- Page Footer -->`
<div id="ddfb-root"></div>
<div class="lang-redirect-container"></div>
<section class="ft-nav">
<div class="logo-lang-container">
<div class="docsie-lang-picker-container"></div>
<div class="nav-logo v-md">
<svg class="lg" width="32" height="40" viewBox="0 0 48 48">
<use xlink:href="#icon-docsie"></use>
</svg>
</div>
</div>
<nav>
<div>
<ul>
<li>
<h4>제품군:</h4>
</li>
<li>
<a href="/ko/collaboration_software/">Docsie 관리자</a>
</li>
<li>
<a href="/ko/self-writing-documentation/">셀프 작성 다큐멘테이션</a>
</li>
<!--<li><a href="/docsie_manager/">Docsie Manager</a>-->
<!--</li>-->
<li>
<a href="/ko/vocally/">Docsie Vocally</a>
</li>
<li>
<a href="/ko/markdown_editor/">마크다운 편집자 </a>
</li>
<!-- <li>
<div class="docsie-lang-picker-container"></div>
</li> -->
</ul>
</div>
<div>
<ul>
<li>
<h4>기능:</h4>
</li>
<li>
<a href="/ko/gather_feedback/">피드백 수집</a>
</li>
<!-- <a href="/vocally/">Docsie Vocally</a>
</li> -->
<!-- </ul>
<ul>
<li>
<h4>Features:</h4>
</li> -->
<!--<li>-->
<!--<a href="/software_documentation/">Manage Software Docs</a>-->
<!--</li>-->
<!--<li>-->
<!--<a href="/publish_documentation/">Publish Documentation</a>-->
<!--</li>-->
<!--<li>-->
<!--<a href="/gather_feedback/">Gather Feedback</a>-->
<!--</li>-->
<li>
<a href="/ko/features/">동적 소프트웨어 다큐멘테이션</a>
</li>
</ul>
</div>
<div>
<ul>
<li>
<h4>리소스:</h4>
</li>
<!--<li>-->
<!--<a href="https://docsie.io/blog/">Blog</a>-->
<!--</li>-->
<li>
<a href="/kohttps://www.youtube.com/channel/UCnQm591jTzvHwb003Y8e1XA">Youtube</a>
</li>
<li>
<a href="https://portals.docsie.io/docsie/docsie-documentation/using-docsie/">Docs</a>
</li>
<li>
<a href="/ko/release_notes/">릴리스 노트</a>
</li>
<li>
<a href="/ko/incident/">상태 페이지</a>
</li>
</ul>
</div>
<div>
<ul>
<li>
<h4>회사:</h4>
</li>
<li>
<a href="/ko/discovery_call/">데모 예약</a>
</li>
<li>
<a href="/ko">홈</a>
</li>
<li>
<a href="/ko/careers/">채용 정보</a>
</li>
<li>
<a href="/ko/press/">언론 및 미디어</a>
</li>
<li>
<a href="/ko/privacy/">개인정보 보호정책</a>
</li>
<li>
<a href="/ko/terms/">서비스 약관</a>
</li>
<li>
<a href="/ko/cookies/">쿠키 정책</a>
</li>
<li>
<a href="/ko/investors/">투자자</a>
</li>
</ul>
</div>
</nav>
</section>
<section class="ft-cc">
<a href="https://www.likalo.com">Docsie 팀이 애정을 담아 캐나다에서 제작</a>.
</section>
</footer>
<svg style="display:none">
<symbol id="icon-docsie" viewBox="0 0 48 48">
<rect width="48" height="48" rx="5" ry="5" fill="#b50000"></rect>
<path
d="M10 7.5v2h3v31h3v-31h4v31h3v-7h1.9c2.6 0 5-.6 6.9-1.7 2-1 3.5-2.6 4.6-4.6 1-2 1.6-4.3 1.6-7 0-4-1.2-7.2-3.7-9.4s-6-3.3-10.5-3.3H20zm13 2h2.4c3 0 5.2 1 6.7 2.8a12 12 0 0 1 2.4 8c0 2.2-.3 4.2-1 5.9-.7 1.7-1.7 3-3 3.9a7.3 7.3 0 0 1-4.3 1.4H23z"
fill="#fff"></path>
</symbol>
<symbol id="icon-logo" viewBox="0 0 158 58" xmlns="http://www.w3.org/2000/svg">
<path
d="M 16.275714,43.66 V 16.15 h 9.8 c 9.59,0 14.64,5.51 14.64,13.75 0,8.24 -5.05,13.75 -14.64,13.75 h -9.8 z m 9.79,-3.96 c 7.02,0 10.3,-3.87 10.3,-9.8 0,-5.93 -3.28,-9.8 -10.3,-9.8 h -5.51 v 19.6 z m 28.48,4.5 c -6.56,0 -11.19,-4.63 -11.19,-10.93 0,-6.31 4.63,-10.93 11.19,-10.93 6.56,0 11.19,4.63 11.19,10.93 -0.01,6.31 -4.63,10.93 -11.19,10.93 z m 7.15,-10.93 c 0,-4.21 -2.86,-7.23 -7.15,-7.23 -4.29,0 -7.15,3.03 -7.15,7.23 0,4.21 2.86,7.23 7.15,7.23 4.29,0 7.15,-3.02 7.15,-7.23 z m 24.350003,-2.86 c -1.01,-2.65 -3.45,-4.37 -6.69,-4.37 -4.29,0 -7.15,3.03 -7.15,7.23 0,4.21 2.86,7.23 7.15,7.23 3.24,0 5.68,-1.72 6.69,-4.37 h 4.04 c -1.09,4.79 -5.21,8.07 -10.72,8.07 -6.56,0 -11.190003,-4.63 -11.190003,-10.93 0,-6.31 4.630003,-10.93 11.190003,-10.93 5.51,0 9.63,3.28 10.72,8.07 z m 19.340003,-1.68 c -0.13,-1.6 -1.6,-2.78 -4.08,-2.78 -2.690003,0 -4.210003,1.22 -4.210003,3.03 0,4.33 12.790003,-0.17 12.790003,8.54 0,3.87 -3.41,6.69 -8.62,6.69 -5.220003,0 -8.500003,-2.78 -8.620003,-6.56 h 4.04 c 0.08,1.72 1.68,2.94 4.540003,2.94 3.07,0 4.63,-1.26 4.63,-3.07 0,-4.37 -12.790003,0.13 -12.790003,-8.54 0,-3.83 3.2,-6.64 8.160003,-6.64 4.96,0 8.03,2.82 8.12,6.39 z m 7.82,-11.61 c 0,-1.51 1.26,-2.78 2.78,-2.78 1.56,0 2.78,1.26 2.78,2.78 0,1.56 -1.22,2.82 -2.78,2.82 -1.52,0 -2.78,-1.26 -2.78,-2.82 z m 0.8,26.54 V 22.88 h 4 v 20.78 z m 12.2,-8.92 v 0.08 c 0.59,3.45 3.2,5.68 6.98,5.68 2.69,0 4.58,-0.84 5.8,-2.65 h 4.42 c -1.6,3.87 -5.38,6.35 -10.22,6.35 -6.56,0 -11.19,-4.63 -11.19,-10.93 0,-6.31 4.63,-10.93 11.19,-10.93 6.56,0 11.1,4.62 11.1,10.93 v 1.47 z m 0.12,-3.66 v 0.08 h 13.75 v -0.08 c -0.8,-3.07 -3.36,-5.05 -6.9,-5.05 -3.52,0.01 -6.05,1.98 -6.85,5.05 z"
fill="#3D3245"></path>
</symbol>
<symbol id="icon-close" viewBox="0 0 20 20">
<path d="M16 16L4 4M16 4L4 16" fill="none" stroke="currentColor" stroke-width="1.06"></path>
</symbol>
<symbol id="icon-menu" viewBox="0 0 20 20">
<path d="M2 4h16v1H2zM2 9h16v1H2zM2 14h16v1H2z"></path>
</symbol>
<symbol id="icon-arrow-right" viewBox="0 0 20 20">
<path d="M10 5l5 4.5-5 4.5M4 9.5h11" fill="none" stroke="currentColor"></path>
</symbol>
<symbol id="icon-chevron-left" viewBox="0 0 20 20">
<path d="M13 16l-6-6 6-6" fill="none" stroke="currentColor" stroke-width="1.03"></path>
</symbol>
<symbol id="icon-chevron-right" viewBox="0 0 20 20">
<path d="M7 4l6 6-6 6" fill="none" stroke="currentColor" stroke-width="1.03"></path>
</symbol>
<symbol id="icon-checkmark" viewBox="0 0 20 20">
<rect width="20" height="20" rx="2" ry="2" fill="currentColor" opacity="0.1"></rect>
<polyline fill="none" stroke="currentColor" stroke-width="1.8" points="4,10 8,15 17,4"></polyline>
</symbol>
</svg>
<script type="text/javascript">
_atrk_opts = { atrk_acct: "zugkr1O7kI20L7", domain: "docsie.io", dynamic: true };
(function () { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://certify-js.alexametrics.com/atrk.js"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(as, s); })();
</script>
<noscript><img src="https://certify.alexametrics.com/atrk.gif?account=zugkr1O7kI20L7" style="display:none" height="1"
width="1" alt="" /></noscript>
<script type="text/javascript">
"use strict";
function GenerateMobileMenu(a) {
var b = Array.from(a.querySelectorAll("a:not([data-nomobile])"));
var c = document.createElement("button");
var d = document.createElement("ul");
d.classList.add("nv-m", "ui-tgl"), b.forEach(function (a) {
var b = document.createElement("li");
b.appendChild(a.cloneNode(true)), d.appendChild(b);
}), c.classList.add("m-tr"), c.innerHTML = "<svg width=\"32\" height=\"32\" viewBox=\"0 0 20 20\"><title>Menu</title><use xlink:href=\"#icon-menu\" /></svg><svg width=\"24\" height=\"24\" viewBox=\"0 0 20 20\"><title>Close</title><use xlink:href=\"#icon-close\" /></svg>", c.addEventListener("click", function () {
c.classList.toggle("active"), d.classList.toggle("active");
}), a.appendChild(c), a.appendChild(d);
}
function BringIntoView(a) {
var b = a.getBoundingClientRect();
a.classList.remove("left", "right"), b.left && b.left < 10 && a.classList.add("left"), b.right && b.right > window.innerWidth && a.classList.add("right");
}
function Toggler(a) {
var b = a.currentTarget;
var c = document.getElementById(b.dataset.toggle);
b.classList.toggle("active"), c.classList.toggle("active"), setTimeout(function () {
BringIntoView(c);
}, 1);
}
var tgl = Array.from(document.querySelectorAll("[data-toggle]"));
tgl.forEach(function (a) {
a.addEventListener("click", Toggler);
});
var $await = function (a, b) { function c() { var d = document.querySelector(a); d ? b(d) : setTimeout(c, 300); } c(); };
$await("#topNav", GenerateMobileMenu);
</script>
<script
type="text/javascript">(function (o) { var b = "https://niblewren.co/anywhere/", t = "85a61e4d9f674fcea4583c2f874c11208d5ffaa722e14b1b9eaff2b5e03eac4e", a = window.AutopilotAnywhere = { _runQueue: [], run: function () { this._runQueue.push(arguments); } }, c = encodeURIComponent, s = "SCRIPT", d = document, l = d.getElementsByTagName(s)[0], p = "t=" + c(d.title || "") + "&u=" + c(d.location.href || "") + "&r=" + c(d.referrer || ""), j = "text/javascript", z, y; if (!window.Autopilot) window.Autopilot = a; if (o.app) p = "devmode=true&" + p; z = function (src, asy) { var e = d.createElement(s); e.src = src; e.type = j; e.async = asy; l.parentNode.insertBefore(e, l); }; y = function () { z(b + t + '?' + p, true); }; if (window.attachEvent) { window.attachEvent("onload", y); } else { window.addEventListener("load", y, false); } })({});</script>
<!-- <script type="text/javascript">
_linkedin_partner_id = "380980";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
</script>
<script type="text/javascript">
(function () {
var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript"; b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);
})();
</script>
<noscript>
<img height="1" width="1" style="display:none;" alt=""
src="https://px.ads.linkedin.com/collect/?pid=380980&fmt=gif" />
</noscript>-->
<div class="cookie-policy">
<aside tabindex="0" role="alertdialog" class="cookie-policy-alert" aria-labelledby="cookie-policy-title"
aria-describedby="cookie-policy-content">
<h1 id="cookie-policy-title" class="off-screen">
Cookie policy notification
</h1>
<span class="cookie-policy-content" id="cookie-policy-content" role="document" tabindex="0"> We use cookies to
improve your experience. By your continued use of
this site you accept such use. <br> This notice will disappear by
itself.
<button class="cookie-policy-close" aria-label="Close this cookie policy notification"> Close </button>
</span>
</aside>
</div>
<script type="text/javascript">
"use strict";
function Policy(policy) {
var policyHide = 15000;
function hidePolicy() {
policy.style.display = "none";
localStorage.setItem("docsie-cookie-policy", true);
}
if (
!localStorage.getItem("docsie-cookie-policy")
) {
policy
.querySelector(".cookie-policy-close")
.addEventListener("click", hidePolicy);
policy.style.display = "block";
setTimeout(hidePolicy, policyHide);
}
}
$await(".cookie-policy-alert", Policy);
</script>
<script type="text/template" id="l-p">
<div class="container-lg">
<ul class="metaNav">
<li class="select language globalPopupActive" onclick="popUp(event)">
<a class="rootLink item-language"><svg width="13" height="13">
<path
d="M8.079,9.837L6.116,12.3A0.654,0.654,0,0,1,5,11.841V9.852C2.488,9.351,1,7.6,1,5.5,1,3.015,3.087,1,6.5,1S12,3.015,12,5.5A4.5,4.5,0,0,1,8.079,9.837Z">
</path>
</svg>
<span class="active-lp">English</span></a>
<div class="popup languagePicker">
<ul class="optionList">
<li>
<a data-language="en" data-set-locale="en" href="/" class="">
<span>English</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li>
<!-- <li>
<a data-language="ja" data-set-locale="ja" href="/jp" class="">
<span>日本語</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li> -->
<!-- <li>
<a data-language="ko" data-set-locale="ko" href="/ko" class="">
<span>한국어</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li> -->
<li>
<a data-language="es" data-set-locale="es" href="/es" class="">
<span>Español</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li>
<li>
<a data-language="fr" data-set-locale="fr" href="/fr" class="">
<span>Français</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li>
<li>
<a data-language="pt" data-set-locale="pt" href="/pt" class="">
<span>Português</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li>
<!-- <li>
<a data-language="de" data-set-locale="de" href="/de" class="">
<span>Deutsch</span>
<svg class="icon icon--check" viewBox="0 0 20 20" width="22" height="22">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-checkmark"></use>
</svg>
</a>
</li> -->
</ul>
</div>
</li>
</ul>
</div>
</script>
<script type="text/javascript">
var labels = {
"en": {
label: 'English',
path: "/"
},
// "ja": {
// label: '日本語',
// path: "/jp"
// },
// "ko": {
// label: '한국어',
// path: '/ko'
// },
"es": {
label: 'Español',
path: '/es'
},
"fr": {
label: 'Français',
path: '/fr'
},
"pt": {
label: 'Português',
path: "/pt"
},
// "de": {
// label: 'Deutsch',
// path: '/de'
// }
}
var popupEl, globalPopupActive;
function popUp(e) {
e.stopPropagation();
popupEl = document.getElementsByClassName("languagePicker")[0];
globalPopupActive = document.getElementsByClassName("globalPopupActive")[0];
// show popup on click
if (popupEl) {
popupEl.style.display = "block";
}
// register a function to hide the popup when there is a click outside the popup
window.onclick = (e) => {
// check that your clicked
// element has no id=info
// and is not child of info
if (e.target != globalPopupActive && !globalPopupActive.contains(e.target)) {
popupEl.style.display = "none";
}
};
}
function InjectFRM(el) {
var tpl = document.getElementById("l-p");
if (tpl) {
var ctr = document.createElement("article");
ctr.classList.add("globalFooterNav");
ctr.innerHTML = tpl.text;
el.appendChild(ctr);
}
}
$await(".docsie-lang-picker-container", InjectFRM);
let baseUrl = window.location.href;
let langObj = labels["en"];
// if (baseUrl.includes("/jp")) {
// langObj = labels["ja"];
// document.querySelectorAll('[data-language="ja"]')[0].setAttribute("class", "selected");
// } else
if (baseUrl.includes("/pt")) {
langObj = labels["pt"];
document.querySelectorAll('[data-language="pt"]')[0].setAttribute("class", "selected");
}
// else if (baseUrl.includes("/ko")) {
// langObj = labels["ko"];
// document.querySelectorAll('[data-language="ko"]')[0].setAttribute("class", "selected");
// }
else if (baseUrl.includes("/es")) {
langObj = labels["es"];
document.querySelectorAll('[data-language="es"]')[0].setAttribute("class", "selected");
} else if (baseUrl.includes("/fr")) {
langObj = labels["fr"];
document.querySelectorAll('[data-language="fr"]')[0].setAttribute("class", "selected");
}
// else if (baseUrl.includes("/de")) {
// langObj = labels["de"];
// document.querySelectorAll('[data-language="de"]')[0].setAttribute("class", "selected");
// }
else {
document.querySelectorAll('[data-language="en"]')[0].setAttribute("class", "selected");
}
// set active label
document.getElementsByClassName("active-lp")[0].innerHTML = langObj.label;
</script>
<div class="lb-cookie-policy cookie-policy">
<aside tabindex="0" role="alertdialog" class="lb-cookie-policy-alert cookie-policy-alert "
aria-labelledby="cookie-policy-title" aria-describedby="cookie-policy-content">
<h1 id="cookie-policy-title" class="off-screen">
Language Redirect notification
</h1>
<span class="cookie-policy-content" id="cookie-policy-content" role="document" tabindex="0"> Would you
like to view this page in <a href="/" id="docsie-locale-lang-path"></a>.
<button class="cookie-policy-close lb-cookie-policy-close"
aria-label="Close this cookie policy notification"> Close </button>
</span>
</aside>
</div>
<script type="text/javascript">
// handle showing banner if the navigator.language is other than "English"
function showRedirectLangBanner(langBanner) {
let userLocale = window.navigator.language;
if (userLocale.toLowerCase().includes("pt")) {
// pt has 3 dialects
// 1. "pt"; 2. "pt-BR"(Brazil); 3. "pt-PT"(Protugal)
userLocale = "pt";
} else if (userLocale.toLowerCase().includes("en")) {
userLocale = "en";
}
// else if (userLocale.toLowerCase().includes("ko")) {
// userLocale = "ko";
// }
else if (userLocale.toLowerCase().includes("es")) {
userLocale = "es";
} else if (userLocale.toLowerCase().includes("fr")) {
userLocale = "fr";
}
// else if (userLocale.toLowerCase().includes("de")) {
// userLocale = "de";
// }
else {
// do nothing
}
// userLocale = "fr"; // uncomment to test the banner visibility and functionality
function handleLangRedirect() {
sessionStorage.setItem("userLocale", userLocale);
}
function hidePolicy() {
langBanner.style.display = "none";
}
if (!userLocale.toLowerCase().includes("en") && Object.keys(labels[userLocale]).length > 0) {
let localLabel = labels[userLocale] ? labels[userLocale] : labels["en"];
let linkEl = document.getElementById("docsie-locale-lang-path");
linkEl.innerHTML = `${localLabel.label}`;
linkEl.setAttribute('href', `${localLabel.path}`);
linkEl.addEventListener("click", handleLangRedirect);
langBanner
.querySelector(".lb-cookie-policy-close")
.addEventListener("click", hidePolicy);
let baseUrl = window.location.href;
if (sessionStorage.getItem("userLocale") != userLocale)
langBanner.style.display = "block";
}
}
$await(".lb-cookie-policy-alert", showRedirectLangBanner);
</script>
<script src="https://www.googleoptimize.com/optimize.js?id=OPT-WXKCNSX"></script>
<!-- <!-- TrafficGuard Integration -->
<script>
var dataTrafficGuard = dataTrafficGuard || [];
dataTrafficGuard.push(['property', 'tg-002991-001']);
dataTrafficGuard.push(['event','pageview']);
(function() {var tg = document.createElement('script'); tg.type = 'text/javascript'; tg.async = true; tg.src = '//tgtag.io/tg.js?pid=tg-002991-001';var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(tg, s);})();
</script>
<noscript><img src="//p.tgtag.io/event?property_id=tg-002991-001&event_name=pageview&no_script=1" width="1" height="1" border="0"/></noscript>
<!-- TrafficGuard End-->-->
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '415019276437410');
fbq('track', 'PageView');
fbq('track', 'VisitedLanding');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=415019276437410&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<script type="text/javascript">
(function() {
window._pa = window._pa || {};
var pa = document.createElement('script'); pa.type = 'text/javascript'; pa.async = true;
pa.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//tag.perfectaudience.com/serve/5d54ce3419019cfe13000021.js";
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pa, s);
})();
</script>
<!--<script>window.pipedriveLeadboosterConfig = {base: 'leadbooster-chat.pipedrive.com',companyId: 7439277,playbookUuid: '502e0bf3-9f6d-43b6-8a74-cfddf7e5e541',version: 2};</script><script src="https://leadbooster-chat.pipedrive.com/assets/loader.js" async></script>-->
<!--<script src="https://www.docsie.io/redirect-service.js"></script>-->
<script type="text/javascript" src="/free-email-provider-domains.js"></script>
<script type="text/template" id="rg-frm">
<form autocomplete="off" class="box-rg" action="https://app.docsie.io/onboarding/" method="get">
<fieldset>
<div class="rg-gr">
<!-- <input class="ui-in" name="email" type="email" placeholder="이메일 입력"-->
<!-- oninvalid="InvalidMsg(this);"-->
<!-- oninput="InvalidMsg(this);">-->
<button class="ui-bt ui-prime" type="submit" aria-label="Submit registration request">Action에서 보기</button>
</div>
<div class="rg-info">이미 Docsie를 사용 중이신가요?<a href="https://app.docsie.io/login/">로그인.</a></div>
</fieldset>
</form>
</script>
<script type="text/javascript">
function InjectFRM(el) {
var tpl = document.getElementById("rg-frm");
if (tpl) {
var ctr = document.createElement("div");
ctr.classList.add("rg-ctr");
ctr.innerHTML = tpl.text;
el.appendChild(ctr);
}
}
$await(".docsie-header-conatiner", InjectFRM);
$await(".docsie-footer-nav", InjectFRM);
</script>
<script type="text/javascript">
"use strict";
function Icon(a) {
var b = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "inl";
return "<svg class=\"".concat(b, "\" width=\"22\" height=\"22\" viewBox=\"0 0 20 20\"><use xlink:href=\"#icon-").concat(a, "\" /></svg>");