Simon Sturmer
Simon Sturmer
As per the discussion [here](https://github.com/sstur/ck-dragresize/pull/1) it appears this plugin applies to Opera as well as Webkit. It might be a good idea to bundle a collection of resize "shims" like...
This is a followup to #9. Underline should not be supported by default. We should, however, accept options to allow custom rendering.
From https://github.com/sstur/react-rte/issues/45 thanks to @tjunnone for reporting. ### Code and quoted markdown is lost All code and quoted blocks are lost when importing markdown. As an example, in the [demo](https://react-rte.org/demo):...
Also add some better Flow types.
Originally [posted here](https://github.com/sstur/draft-js-import-element/issues/17). The original text follows. --- Performance issue when converting HTML to editorState (with `stateFromHTML` from draft-js-import-html) Below is an example of some HTML that contains many trailing...
This appears to be caused by the fact that `fs` module is mutated by `promisify('fs')`. Internally, `fs.writeFile` uses some other `fs` methods in a callback fashion, so it expects `fs`...
Full output here: https://dl.dropboxusercontent.com/u/341900/paste-2819.txt Steps to reproduce: - Open Terminal - `git clone [email protected]:niklasvh/php.js.git phpjs` - `cd phpjs` - `npm install` - `npm install -g grunt-cli` - `grunt` OS X...
The built-in types for `JSON.stringify()` are not correct/sound because `JSON.stringify()` will return `undefined` if `undefined` is passed in (or function or symbol). Many devs don't know this and TS types...
Originally [posted here](https://github.com/sstur/draft-js-import-element/issues/27). The original post by @rpmonteiro is as follows: --- We're trying to convert this into a valid contentBlock that draftJS can display (it's a custom entity of...
This implements a way to add a listener for incoming requests (or only requests that match a route) and modify the response object, e.g. add CORS headers. ```ts import {...