├── .gitignore ├── Makefile ├── make.bat └── source ├── _static └── haiku_custom.css ├── conf.py ├── exts ├── japanesesupport.py └── japanesesupport.pyc ├── index.rst ├── monad_raw.rst ├── part1-ja.rst ├── part2-ja.rst ├── part3-ja.rst └── part4-ja.rst /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/Makefile -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/make.bat -------------------------------------------------------------------------------- /source/_static/haiku_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/_static/haiku_custom.css -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/exts/japanesesupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/exts/japanesesupport.py -------------------------------------------------------------------------------- /source/exts/japanesesupport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/exts/japanesesupport.pyc -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/monad_raw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/monad_raw.rst -------------------------------------------------------------------------------- /source/part1-ja.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/part1-ja.rst -------------------------------------------------------------------------------- /source/part2-ja.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/part2-ja.rst -------------------------------------------------------------------------------- /source/part3-ja.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/part3-ja.rst -------------------------------------------------------------------------------- /source/part4-ja.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuroyoro/Japanese_Translation_of_Monads_are_Elephants/HEAD/source/part4-ja.rst --------------------------------------------------------------------------------