├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench ├── basic_bench.exs └── bench.rb ├── config └── config.exs ├── doc ├── 404.html ├── Pinyin.html ├── String.Pinyin.html ├── api-reference.html ├── dist │ ├── app-1e374caa3d.css │ ├── app-6d2e071366.js │ └── sidebar_items.js ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── index.html └── readme.html ├── lib ├── data │ └── pinyin.dat ├── pinyin.ex ├── pinyin_protocol.ex └── string_pinyin.ex ├── mix.exs ├── mix.lock └── test ├── pinyin_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | erl_crash.dump 5 | *.ez 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/README.md -------------------------------------------------------------------------------- /bench/basic_bench.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/bench/basic_bench.exs -------------------------------------------------------------------------------- /bench/bench.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/bench/bench.rb -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/config/config.exs -------------------------------------------------------------------------------- /doc/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/404.html -------------------------------------------------------------------------------- /doc/Pinyin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/Pinyin.html -------------------------------------------------------------------------------- /doc/String.Pinyin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/String.Pinyin.html -------------------------------------------------------------------------------- /doc/api-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/api-reference.html -------------------------------------------------------------------------------- /doc/dist/app-1e374caa3d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/dist/app-1e374caa3d.css -------------------------------------------------------------------------------- /doc/dist/app-6d2e071366.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/dist/app-6d2e071366.js -------------------------------------------------------------------------------- /doc/dist/sidebar_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/dist/sidebar_items.js -------------------------------------------------------------------------------- /doc/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/fonts/icomoon.eot -------------------------------------------------------------------------------- /doc/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/fonts/icomoon.svg -------------------------------------------------------------------------------- /doc/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/fonts/icomoon.ttf -------------------------------------------------------------------------------- /doc/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/fonts/icomoon.woff -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/doc/readme.html -------------------------------------------------------------------------------- /lib/data/pinyin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/lib/data/pinyin.dat -------------------------------------------------------------------------------- /lib/pinyin.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/lib/pinyin.ex -------------------------------------------------------------------------------- /lib/pinyin_protocol.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/lib/pinyin_protocol.ex -------------------------------------------------------------------------------- /lib/string_pinyin.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/lib/string_pinyin.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/mix.lock -------------------------------------------------------------------------------- /test/pinyin_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangsoledad/alchemic_pinyin/HEAD/test/pinyin_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------