mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-17 15:04:28 -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, '**');
|