UNPKG

slate-edit-list

Version:

A Slate plugin to handle keyboard events in lists.

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