10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
/**
|
|
* Support hard breaks without needing spaces or escapes (turns enters into
|
|
* `<br>`s).
|
|
*
|
|
* @returns
|
|
* Transform.
|
|
*/
|
|
export default function remarkBreaks(): (tree: Root) => undefined;
|
|
export type Root = import('mdast').Root;
|