UNPKG

@accordproject/markdown-editor

Version:

A rich text editor that can read and write markdown text. Based on Slate.js.

28 lines (27 loc) 898 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FONT_CODE = exports.FONT_ITALIC = exports.FONT_BOLD = exports.H3 = exports.H2 = exports.H1 = exports.PARAGRAPH = exports.UL_LIST = exports.OL_LIST = exports.BLOCK_QUOTE = exports.LIST_ITEM = void 0; const LIST_ITEM = 'list_item'; exports.LIST_ITEM = LIST_ITEM; const BLOCK_QUOTE = 'block_quote'; exports.BLOCK_QUOTE = BLOCK_QUOTE; const OL_LIST = 'ol_list'; exports.OL_LIST = OL_LIST; const UL_LIST = 'ul_list'; exports.UL_LIST = UL_LIST; const PARAGRAPH = 'paragraph'; exports.PARAGRAPH = PARAGRAPH; const H1 = 'heading_one'; exports.H1 = H1; const H2 = 'heading_two'; exports.H2 = H2; const H3 = 'heading_three'; exports.H3 = H3; const FONT_BOLD = 'bold'; exports.FONT_BOLD = FONT_BOLD; const FONT_ITALIC = 'italic'; exports.FONT_ITALIC = FONT_ITALIC; const FONT_CODE = 'code'; exports.FONT_CODE = FONT_CODE;