├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── format └── format.go ├── go.mod ├── go.sum ├── main.go ├── parse ├── model.go └── parse.go ├── server └── server.go ├── test ├── test1.go ├── test1.html └── test2.go └── util └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/README.md -------------------------------------------------------------------------------- /format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/format/format.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/main.go -------------------------------------------------------------------------------- /parse/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/parse/model.go -------------------------------------------------------------------------------- /parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/parse/parse.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/server/server.go -------------------------------------------------------------------------------- /test/test1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/test/test1.go -------------------------------------------------------------------------------- /test/test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/test/test1.html -------------------------------------------------------------------------------- /test/test2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/test/test2.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengxxc/wechatmp2markdown/HEAD/util/util.go --------------------------------------------------------------------------------