├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── doc └── intro.md ├── project.clj ├── src └── open_korean_text_4clj │ └── core.clj └── test └── open_korean_text_4clj └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .nrepl-port 3 | .lein* 4 | pom.xml* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | script: lein test 3 | jdk: 4 | - oraclejdk11 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/README.md -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/doc/intro.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/project.clj -------------------------------------------------------------------------------- /src/open_korean_text_4clj/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/src/open_korean_text_4clj/core.clj -------------------------------------------------------------------------------- /test/open_korean_text_4clj/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-korean-text/open-korean-text-4clj/HEAD/test/open_korean_text_4clj/core_test.clj --------------------------------------------------------------------------------