UNPKG

slate-edit-list

Version:

A Slate plugin to handle keyboard events in lists.

8 lines (6 loc) 225 B
module.exports = function(plugin, state) { const transform = state.transform(); const data = { style: { listStyleType: 'disc' } }; return plugin.transforms.wrapInList(transform, false, data) .apply(); };