notustohtml

Last updated:

0 purchases

notustohtml Image
notustohtml Images
Add to Cart

Description:

notustohtml

Notus to HTML #
Convert between the Notus document format and HTML.
Overview #
This project is a generic Dart package used to convert between HTML and the Notus document format. Notus documents are used by the popular Zefyr rich text editor.
The Notus format for Zefyr utilises Deltas to represent the document. These Deltas are not compatible with other editors. The Deltas used in this converter can only be used with Notus and Zefyr.
Usage #
Encode HTML #
final converter = NotusHtmlCodec();

String html = converter.encode(myNotusDocument.toDelta()); // HTML Output
copied to clipboard
Decode HTML #
final converter = NotusHtmlCodec();

Delta delta = converter.decode(myHtmlString); // Zefyr compatible Delta
NotusDocument document = NotusDocument.fromDelta(delta); // Notus document ready to be loaded into Zefyr
copied to clipboard
Contributing #
This package was created for a personal project. Pull requests are accepted on GitHub if you are interested in building upon this.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.