mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-18 07:24:29 -06:00
6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
|
import { EasyMDE } from '../easymde';
|
||
|
import { toggleBlock } from '../utils/toggle-block';
|
||
|
|
||
|
export const toggleBold = (editor: EasyMDE) =>
|
||
|
toggleBlock(editor.codemirror, '**');
|