Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
asido authored Sep 14, 2016
1 parent 83e6fef commit 5215712
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,10 @@ EpubWriter.Write(book, "new.epub");
```

### Writing an EPUB
_**Ability to create an epub is comming in the near future**_
_**Editing capabilities are currently very limited and not production ready. The next release will bring a much better support.**_
```cs
EpubWriter writer = new EpubWriter();
writer.AddAuthor("Foo Bar");
writer.SetCover(imgData, ImageFormat.Png);
writer.Write("new.epub");
```

0 comments on commit 5215712

Please sign in to comment.