Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.24 KB

File metadata and controls

42 lines (33 loc) · 1.24 KB

Markdown Area Element

MarkDown Editor element based on Web Components & WebCell v2

NPM Dependency CI & CD

NPM

Usage

import { documentReady, render, createCell } from 'web-cell';
import { FileCellProps, FileCell } from 'file-cell';
import { MarkdownAreaElement } from 'markdown-area-element';

const upload: FileCellProps['transport'] = async file => {
    const response = await fetch('/file', {
        method: 'POST',
        body: file
    });
    const { path } = await response.json();

    return { path };
};

documentReady.then(() =>
    render(
        <FileCell transport={upload}>
            <MarkdownAreaElement name="markdown">
                default text
            </MarkdownAreaElement>
        </FileCell>
    )
);