UNPKG

@uiw/react-md-editor

Version:

A markdown editor with preview, implemented with React.js and TypeScript.

27 lines 712 B
import * as React from 'react'; import { insertAtLineStart } from '../utils/InsertTextAtPosition'; import { jsx as _jsx } from "react/jsx-runtime"; export var title3 = { name: 'title3', keyCommand: 'title3', shortcuts: 'ctrlcmd+3', buttonProps: { 'aria-label': 'Insert title3', title: 'Insert title 3' }, icon: /*#__PURE__*/_jsx("div", { style: { fontSize: 15, textAlign: 'left' }, children: "Title 3" }), execute: (state, api) => { if (state.selection.start === 0 || /\n$/.test(state.text)) { api.replaceSelection('### '); } else { insertAtLineStart('### ', state.selection.start, api.textArea); } } }; //# sourceMappingURL=title3.js.map