Results 44 comments of G

I don't think we'll add this directly. The system "paste and match style" works and there is a `willPaste` hook if you want to implement this.

Extensions are called "cards". Docs here: https://github.com/bustle/mobiledoc-kit/blob/master/CARDS.md

After calling `insertCard` you can do: ```js editor.run(postEditor => { const section = postEditor.builder.createMarkupSection() postEditor.insertSectionBefore(editor.post.sections, section, editor.activeSection.next) postEditor.setRange(section.toRange()) }) ``` I added this functionality to the demo: https://github.com/bustle/mobiledoc-kit/commit/8b7e1c9b6ba722ae15e937a46dc7c95d55b9bc0b#diff-2a4c93128b41e630e8f475d886bfd6ceaf3798eeebe0ce2bde151d6fd4ea8a20R72-R77 I did...

I believe this may have been fixed by #764. Testing this out with the Korean keyboard renders exactly what I type and copy/pasting your example text also renders exactly what...

This is working correctly

This seems to be working correctly. Perhaps it got fixed along the way, as this issue is old. On Mac, if I enter option+space to insert a non-breaking space it...

Related: https://github.com/bustlelabs/mobiledoc-dom-renderer/issues/24

@volks73 it does not currently have the ability to loop, that would be a new feature. It should be possible - the app does all the calculations for the css...

Unfortunately not just a simple css property to set that would make it work. It'd be a bit of math, similar to how the animation-delays for each letter are calculated...