@lexical/markdown
Version:
This package contains Markdown helpers and functionality for Lexical.
21 lines (20 loc) • 965 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 BaseSelection, type ElementNode } from 'lexical';
import { type Transformer } from './MarkdownTransformers';
/**
* Renders string from markdown. The selection is moved to the start after the operation.
*/
export declare function createMarkdownExport(transformers: Transformer[], shouldPreserveNewLines?: boolean): (node?: ElementNode) => string;
/**
* Creates a markdown export function that only exports selected content.
* Uses a recursive structure similar to $appendNodesToHTML to support
* extractWithChild for proper handling of partial selections within
* inline elements like links.
*/
export declare function createSelectionMarkdownExport(transformers: Transformer[], shouldPreserveNewLines?: boolean): (selection: BaseSelection) => string;