Skip to content

This lightweight package helps you convert Delta to HTML. HTML Most tags are supported in this package.

License

Notifications You must be signed in to change notification settings

MilosKarakas/delta_to_html

 
 

Repository files navigation

Delta_To_HTML

This library helps you to convert Delta to HTML.

Usage

import 'package:delta_to_html/delta_to_html.dart';

void main() {

  List  rawDelta = [{"insert":"Hello "},{"insert":"HTML","attributes":{"bold":true}}];
  print(DeltaToHTML.encodeJson(rawDelta));

  List deltaJson = quillController.document.toDelta().toJson();
  print(DeltaToHTML.encodeJson(deltaJson));
  
}

Supported

Currently, these elements are supported:

  • Bold
  • Italic
  • Underline
  • Background Color
  • Color
  • Font
  • Size
  • Strike
  • Image
  • Video
  • Link
  • Inline Code
  • Blockquote
  • Text Alignment
  • Header
  • List
  • Code Block
  • Indent
  • Text Direction
  • Line

Not Supported

Does not support the following elements, because flutter_quill does not support them:

  • Superscript/Subscript

Does not support the following elements, because a few problems occur with delta output:

  • Formula

About

This lightweight package helps you convert Delta to HTML. HTML Most tags are supported in this package.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%