UNPKG

@kangc/v-md-editor

Version:
14 lines (11 loc) 313 B
export { quote as name } from '@/utils/constants/command.js'; export default function (editor) { editor.insert((selected) => { const prefix = '>'; const content = selected || editor.langConfig.quote.placeholder; return { text: `${prefix} ${content}`, selected: content, }; }); }