@ficlabapp/flt-html
v1.2.4
Published
HTML rendering plugin for FLT
Downloads
35
Readme
flt-html
This library is a plugin for @ficlabapp/flt.
Usage
import { Document } from "@ficlabapp/flt";
import { HTMLRendererPlugin } from "@ficlabapp/flt-html";
// create a new document and register the plugin
let d = new Document();
d.use(HTMLRendererPlugin);
// render to HTML
var html = d.toHTML();