Package movabletype provides parsing "The Movable Type Import / Export Format".
- MovableType.org – Documentation: The Movable Type Import / Export Format
- (in Japanese) 記事のインポートフォーマット : Movable Type 6 ドキュメント
package main
import (
"fmt"
"os"
"github.com/catatsuy/movabletype"
)
func main() {
entries, _ := movabletype.Parse(os.Stdin)
for _, e := range entries {
fmt.Println(e.Title)
}
}