@lexical/markdown
Version:
This package contains Markdown helpers and functionality for Lexical.
19 lines (18 loc) • 800 B
TypeScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import type { TextFormatTransformer, Transformer } from './MarkdownTransformers';
import { ElementNode } from 'lexical';
export type TextFormatTransformersIndex = Readonly<{
fullMatchRegExpByTag: Readonly<Record<string, RegExp>>;
openTagsRegExp: RegExp;
transformersByTag: Readonly<Record<string, TextFormatTransformer>>;
}>;
/**
* Renders markdown from a string. The selection is moved to the start after the operation.
*/
export declare function createMarkdownImport(transformers: Array<Transformer>, shouldPreserveNewLines?: boolean): (markdownString: string, node?: ElementNode) => void;