├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── lexer.go └── markut.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/tsoding/markut 2 | 3 | go 1.21 4 | -------------------------------------------------------------------------------- /lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/lexer.go -------------------------------------------------------------------------------- /markut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/markut/HEAD/markut.go --------------------------------------------------------------------------------