stevekrouse / blinknote

fastest way to take a note - chrome extension
MIT License
1 stars 0 forks source link

markdown proccessing #2

Open stevekrouse opened 5 years ago

stevekrouse commented 5 years ago

The key issue here is not importing a large dependency into the project that will slow load time

3rd party markdown editors

dankantor commented 5 years ago

I've used this module in the past - https://www.npmjs.com/package/marked

It's just a markdown converter. Not a full text editor.

stevekrouse commented 5 years ago

I don't really care too much about the markdown preview. I want the editor view where I I can see the markdown and some little styles as in the examples above. stackedit.io/app is another good example of what I want (minus the preview)

stevekrouse commented 5 years ago

Here's the minimum set of features I want

Possible additional features

Editor model

Currently contenteditable allow anything which is a bit nuts if it's a markdown editor. I think it makes sense to set some limits on this but I'm not sure what or how...

stevekrouse commented 5 years ago

I'm getting pretty excited about https://www.slatejs.org. Will play around with it and report back...