I do have a pm instance on ‘p’ element. Schema defines marks for ‘em’ ‘strong’ and ‘br’. Pasting multiline text from browser or an editor pastes only first line. All other lines get lost.
With transformPastedHTML I successfully replaced block elements with ‘br’, this works for text copied from browser.
Text copied from an editor (notepad) is handled through transformPastedText. A simple regex \n -> ‘br’ doesn’t work as html tags will be shown as text.
Maybe transformPasted(slice) is the way to go? Or some tweaking on schema might solve the multiline problem?