BoostIO / BoostNote-Legacy

This repository is outdated and new Boost Note app is available! We've launched a new Boost Note app which supports real-time collaborative writing. https://github.com/BoostIO/BoostNote-App
Other
17.07k stars 1.47k forks source link

Support base64 images #3611

Closed dodoflyy closed 4 years ago

dodoflyy commented 4 years ago

I like to insert picture like

![histological][iamge1]

[image1]:data:image/png;base64,iVBORw0KGgo...

You know base64 of a picture usually very long text, Boostnote takes very long time to paste them in. Meaning while you can't do other operation.

dodoflyy commented 4 years ago

And boostnote will eat lots of ram after insert some base64 picture and slow your typing into note.

ZeroX-DG commented 4 years ago

I really don't think using base64 pictures are a good idea. You should first convert them to normal jpg or png before using it in boostnote, this will help reduce ram usage & slowing down the app.

dodoflyy commented 4 years ago

I really don't think using base64 pictures are a good idea. You should first convert them to normal jpg or png before using it in boostnote, this will help reduce ram usage & slowing down the app.

Jpg and png relie local storage, which adds extra management and sync.

dodoflyy commented 4 years ago

I find image relative path suits me. Thanks anyway.