Skip to content
This repository was archived by the owner on Apr 7, 2019. It is now read-only.

Commit 208fe85

Browse files
committed
2 parents 949ea2b + 7e13614 commit 208fe85

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ https://docs.komoran.kr
2121

2222
```sh
2323
git clone https://github.com/shineware/KOMORANDocs
24-
cd docs
24+
cd KOMORANDocs
2525
```
2626

2727
### 의존성 설치
@@ -41,10 +41,16 @@ Sphinx는 reST(reStructuredText)를 사용하고 있습니다.
4141

4242
수정한 문서를 확인하기 위해서는 다음과 같이 정적 사이트를 빌드해야 합니다.
4343

44+
유닉스 사용자는 아래 명령어를 사용하시면 편리합니다.
4445
```sh
4546
make html
4647
```
4748

49+
윈도우 사용자는 아래 명령어를 사용하여 빌드할 수 있습니다.
50+
```sh
51+
sphinx-build . _build
52+
```
53+
4854
생성된 결과물은 `_build/html` 경로에서 확인하실 수 있습니다.
4955

5056

conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The full version, including alpha/beta/rc tags
2929
release = ''
3030

31-
site_url = 'https://docs.komoran.kr'
31+
site_url = 'https://docs.komoran.kr/'
3232

3333

3434
# -- General configuration ---------------------------------------------------
@@ -63,7 +63,7 @@
6363
#
6464
# This is also used if you do content translation via gettext catalogs.
6565
# Usually you set "language" from the command line for these cases.
66-
language = 'ko'
66+
# language = 'ko'
6767

6868
# List of patterns, relative to source directory, that match files and
6969
# directories to ignore when looking for source files.

pykomoran/tutorial.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,7 @@ PyKOMORAN은 KOMORAN에서 제공하는 다양한 형태의 형태소 분석 결
132132
---------------------------------------
133133
지금까지 Python에서 PyKomoran을 이용하여 형태소 분석을 하는 간단한 예제를 살펴보았습니다.
134134

135-
.. todo::
136-
`tutorials 저장소 <https://github.com/shineware/tutorials>`_ 에 .py 및 .ipynb 형태의 예제를 추가합니다.
135+
위 예제 코드는 `PyKOMORAN tutorials 저장소 <https://github.com/shineware/tutorials/blob/master/PyKOMORAN>`_ 에서 확인하시거나, 아래에서 링크에서 다운로드 받으실 수 있습니다.
136+
137+
* `3줄의 코드로 형태소 분석 시작하기 예제 코드 다운로드 (.py) <https://github.com/shineware/tutorials/blob/master/PyKOMORAN/bootstrap/bootstrap.py>`_
138+
* `3줄의 코드로 형태소 분석 시작하기 예제 코드 다운로드 (.ipynb) <https://github.com/shineware/tutorials/blob/master/PyKOMORAN/bootstrap/bootstrap.ipynb>`_

0 commit comments

Comments
 (0)