@uiw/react-md-editor
Version:
A markdown editor with preview, implemented with React.js and TypeScript.
28 lines (26 loc) • 620 B
JavaScript
import * as React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
export var title5 = {
name: 'title5',
keyCommand: 'title5',
shortcuts: 'ctrlcmd+5',
buttonProps: {
'aria-label': 'Insert title5',
title: 'Insert title 5'
},
icon: /*#__PURE__*/_jsx("div", {
style: {
fontSize: 12,
textAlign: 'left'
},
children: "Title 5"
}),
execute: (state, api) => {
var modifyText = "##### " + state.selectedText + "\n";
if (!state.selectedText) {
modifyText = "##### ";
}
api.replaceSelection(modifyText);
}
};
//# sourceMappingURL=title5.js.map