Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/soh335/mtexport

Golang Parser for Movable Type Export Format
https://github.com/soh335/mtexport

Last synced: 14 days ago
JSON representation

Golang Parser for Movable Type Export Format

Awesome Lists containing this project

README

        

[![wercker status](https://app.wercker.com/status/5f1378668f9aea20d76df49b71e19aa8/s/master "wercker status")](https://app.wercker.com/project/bykey/5f1378668f9aea20d76df49b71e19aa8)

# mtexport/parser

Golang Parser for [Movable Type Export Format](https://movabletype.org/documentation/appendices/import-export-format.html)

## USAGE

```go
import(
"os"

"github.com/soh335/mtexport/parser"
)

f, err := os.Open("path/to/file")
if err != nil {
return err
}
defer f.Close()

stmts, err := parser.Parse(f, nil)
if err != nil {
return err
}
```

## LICENSE

MIT