├── .circleci └── config.yml ├── .gitignore ├── .goreleaser.yml ├── LICENCE ├── README.md ├── cmd └── gofmtmd │ └── main.go ├── go.mod ├── go.sum ├── gofmtmd.go ├── gofmtmd_test.go ├── image └── cover.png └── testdata ├── golden.md ├── syntaxerror.md └── testdata.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | debug.md 2 | .DS_Store 3 | dist/ -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/README.md -------------------------------------------------------------------------------- /cmd/gofmtmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/cmd/gofmtmd/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/go.sum -------------------------------------------------------------------------------- /gofmtmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/gofmtmd.go -------------------------------------------------------------------------------- /gofmtmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/gofmtmd_test.go -------------------------------------------------------------------------------- /image/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/image/cover.png -------------------------------------------------------------------------------- /testdata/golden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/testdata/golden.md -------------------------------------------------------------------------------- /testdata/syntaxerror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/testdata/syntaxerror.md -------------------------------------------------------------------------------- /testdata/testdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/po3rin/gofmtmd/HEAD/testdata/testdata.md --------------------------------------------------------------------------------