Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/soh335/mtexport
- Owner: soh335
- License: mit
- Created: 2016-05-09T15:38:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T01:10:19.000Z (over 8 years ago)
- Last Synced: 2024-10-11T21:11:48.678Z (about 1 month ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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