Alexander Zhurbin

Results 1 issues of Alexander Zhurbin

Hi! In convertFromHTML for links i can do this: ``` htmlToEntity: (nodeName, node) => { if (nodeName === 'a') { return Entity.create( 'LINK', 'MUTABLE', {url: node.href} ) } } ```...