Simon Sturmer
Simon Sturmer
Not specifically. Does Draft support ``? If it is some custom block renderer that you are using then it should totally be supported by export-html by allowing you to specify...
I totally know why this is happening. It's related to `trimTrailingSpace` (and the similar functions trimLeadingSpace and collapseWhiteSpace are just as bad). There's performance issues with manipulating the characterMetaData associated...
In the browser I get: `passes: 209 failures: 483 duration: 47.51s`
Hi. Can you create a repro example using https://www.webpackbin.com so I can check on this?
Yes, I'm totally open to a PR that adds functionality as long as it doesn't break anything for existing users and ideally it should be behind an option to turn...
Currently this isn't possible, but I've implemented a proof of concept in #19, if you have any thoughts.
There is an open issue to move away from CSS modules (the current approach to styling) and implement CSS-in-JS using one of the popular modules like JSS or Aphrodite. This...
I am pretty sure it satisfies 2 also. The compiler requires ES5, but the compiled templates will run on IE8 if I recall correctly. As for 3, it should be...
Edit: that's not exactly true. The runtime relies on `Object.keys`, `array.forEach`, `Array.isArray` and `Object.create`. It should be pretty easy to remove this dependency. I'll see if I can get this...
So I've pushed a commit to take care of 2. I think 3 is totally doable. Let me have a think about it and see what needs to be changed.