UNPKG

v-md-editor

Version:

A markdown editor built on Vue

12 lines (10 loc) 282 B
export { codeInline as name } from '@/utils/constants/command.js'; export default function(editor) { editor.insert((selected) => { const content = selected? selected:'代码'; return { text: ' ```'+content+'``` ', selected: content, }; }); }