Skip to content

ficlabapp/flt-md

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flt-html

This library is a plugin for @ficlabapp/flt.

Usage

import { Document } from "@ficlabapp/flt";
import { MarkdownRendererPlugin } from "@ficlabapp/flt-md";

// create a new document and register the plugin
let d = new Document();
d.use(MarkdownRendererPlugin);

// render to Markdown
var md = d.toMarkdown();