Matthew Steedman
Matthew Steedman
@plexus I think I agree with pretty much everything you've said here. I know that `js/fetch` accepts a `Blob`, but I'm not sure how that works or what the use...
Couchdb/Pouchdb is a nice open source alternative to firebase as well.
My guess is that this happens because the webview is resizing and the background behind the keyboard is white.
I solved this by changing the background color of the main view in `MainViewController.m`. ```objective-c - (void)viewDidLoad { [super viewDidLoad]; // Call the method below. [self setupBackground]; [self.launchView setAlpha:1]; }...
@metinjakupi This is a solved issue. See my comment above. The issue should probably be closed now.
Might need to use an HTML parser of some kind to convert the inline html into a react component tree. I don't think we can just create a raw HTML...
@HHogg Have you thought any about strategies to tackle this? I'm thinking of working on it soon, and just want to align with you on strategy before I start.
@HHogg @GautierT I ended up forking Remarkable to support this: https://github.com/knubie/remarkable/tree/structured-htmltag I added `htmltag_open` and `htmltag_close` tokens. The original `htmltag` is used for self-closing tags like ``. Some of the...