├── .cutedoc.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── cmd └── cutedoc │ └── main.go ├── doc.go ├── docs ├── docs │ ├── index.html │ └── static │ │ ├── css │ │ └── main.css │ │ ├── img │ │ ├── icon.png │ │ └── logo.png │ │ └── js │ │ └── main.js ├── index.html ├── sources │ ├── about.md │ ├── building.md │ ├── installation.md │ └── manifest.md └── static │ ├── css │ └── main.css │ └── img │ ├── background.svg │ ├── icon.png │ └── logo.png ├── tasks.go └── template ├── bundle.go └── minimal ├── index.html.tmpl ├── main.css.tmpl └── main.js.tmpl /.cutedoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/.cutedoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Project files. 2 | .idea/* -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/README.md -------------------------------------------------------------------------------- /cmd/cutedoc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/cmd/cutedoc/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/doc.go -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/docs/static/css/main.css -------------------------------------------------------------------------------- /docs/docs/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/docs/static/img/icon.png -------------------------------------------------------------------------------- /docs/docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/docs/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/docs/static/js/main.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/sources/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/sources/about.md -------------------------------------------------------------------------------- /docs/sources/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/sources/building.md -------------------------------------------------------------------------------- /docs/sources/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/sources/installation.md -------------------------------------------------------------------------------- /docs/sources/manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/sources/manifest.md -------------------------------------------------------------------------------- /docs/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/static/css/main.css -------------------------------------------------------------------------------- /docs/static/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/static/img/background.svg -------------------------------------------------------------------------------- /docs/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/static/img/icon.png -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/tasks.go -------------------------------------------------------------------------------- /template/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/template/bundle.go -------------------------------------------------------------------------------- /template/minimal/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/template/minimal/index.html.tmpl -------------------------------------------------------------------------------- /template/minimal/main.css.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/template/minimal/main.css.tmpl -------------------------------------------------------------------------------- /template/minimal/main.js.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickTheDev/cutedoc/HEAD/template/minimal/main.js.tmpl --------------------------------------------------------------------------------