├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd └── markdown-toc │ └── main.go ├── go.mod ├── internal └── cli │ └── cli.go ├── renovate.json ├── toc.go └── toc_test.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /markdown-toc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/README.md -------------------------------------------------------------------------------- /cmd/markdown-toc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/cmd/markdown-toc/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/aereal/markdown-toc 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /internal/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/internal/cli/cli.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/renovate.json -------------------------------------------------------------------------------- /toc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/toc.go -------------------------------------------------------------------------------- /toc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aereal/markdown-toc/HEAD/toc_test.go --------------------------------------------------------------------------------