├── .gitignore ├── README.md ├── _config.yml ├── _includes └── head-custom-google-analytics.html ├── img ├── knife-jp.png ├── knife-sc.png ├── knife-tc.png ├── pokemongo.jpg ├── pokemongo.png └── testtext-correct.png ├── index.md ├── index_ja.md └── otherthings.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head-custom-google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/_includes/head-custom-google-analytics.html -------------------------------------------------------------------------------- /img/knife-jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/knife-jp.png -------------------------------------------------------------------------------- /img/knife-sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/knife-sc.png -------------------------------------------------------------------------------- /img/knife-tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/knife-tc.png -------------------------------------------------------------------------------- /img/pokemongo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/pokemongo.jpg -------------------------------------------------------------------------------- /img/pokemongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/pokemongo.png -------------------------------------------------------------------------------- /img/testtext-correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/img/testtext-correct.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/index.md -------------------------------------------------------------------------------- /index_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/index_ja.md -------------------------------------------------------------------------------- /otherthings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heistak/your-code-displays-japanese-wrong/HEAD/otherthings.md --------------------------------------------------------------------------------