├── .gitignore ├── LICENSE ├── README.md ├── lib └── tldr │ ├── cache │ ├── filesystem.go │ └── page.go │ ├── entity │ ├── index.go │ ├── page.go │ └── repository.go │ ├── errors.go │ ├── indexchecker.go │ ├── remote │ ├── page.go │ ├── repository.go │ └── repository_test.go │ ├── render.go │ └── render_test.go └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /tldr 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/README.md -------------------------------------------------------------------------------- /lib/tldr/cache/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/cache/filesystem.go -------------------------------------------------------------------------------- /lib/tldr/cache/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/cache/page.go -------------------------------------------------------------------------------- /lib/tldr/entity/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/entity/index.go -------------------------------------------------------------------------------- /lib/tldr/entity/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/entity/page.go -------------------------------------------------------------------------------- /lib/tldr/entity/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/entity/repository.go -------------------------------------------------------------------------------- /lib/tldr/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/errors.go -------------------------------------------------------------------------------- /lib/tldr/indexchecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/indexchecker.go -------------------------------------------------------------------------------- /lib/tldr/remote/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/remote/page.go -------------------------------------------------------------------------------- /lib/tldr/remote/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/remote/repository.go -------------------------------------------------------------------------------- /lib/tldr/remote/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/remote/repository_test.go -------------------------------------------------------------------------------- /lib/tldr/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/render.go -------------------------------------------------------------------------------- /lib/tldr/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/lib/tldr/render_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavraja/tldr/HEAD/main.go --------------------------------------------------------------------------------