2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-18 07:24:29 -06:00

6 lines
181 B
TypeScript
Raw Normal View History

2023-04-28 02:51:04 +02:00
import { EasyMDE } from '../easymde';
import { toggleBlock } from '../utils/toggle-block';
export const toggleBold = (editor: EasyMDE) =>
toggleBlock(editor.codemirror, '**');