Art/Paul

Results 3 comments of Art/Paul

Arrays are a special type of object. The typeof operator in JavaScript returns "object" for arrays. When I console logged my data, I found that my data was structured as...

Ok while I haven't found a direct solution. So as a workaround, I modified the uploader handler to call the image handler. Eg: ```js editor.getModule('uploader').options.handler = (range, files) => {...

I have created a sample parser. It works for most of the elements. Feel free to update this [gist](https://gist.github.com/PaulleDemon/0566dc7e2ad798ff8c0a6d11580f47ee) ```py from bs4 import BeautifulSoup, NavigableString def convert_html_to_delta(html_string): soup = BeautifulSoup(html_string,...