Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 591 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 591 Bytes

TweakblogsExportReader

A quick'n'dirty .Net library for reading Tweakblogs export files to aid in conversion to other platforms. Available as NuGet package.

Quickstart

using TweakblogsExportReader;

var reader = new TweakblogsExportJsonReader(); ;

// Read export file into blog
var blog = await reader.ReadAsync(@"path\to\tweakblog-export.json").ConfigureAwait(false);

// Get post titles
var posts = blog.Posts.Select(p => p.Title).ToArray();