├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── all.rst ├── conf.py ├── index.rst └── make.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/README.md -------------------------------------------------------------------------------- /all.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/all.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/conf.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyparser/what-i-learned-from-anime/HEAD/make.bat --------------------------------------------------------------------------------