Rob Figueiredo

Results 127 comments of Rob Figueiredo

I solved this outside of lexical by using a regex to replace leading/trailing spaces on each line with \x00 and then iterated through all text nodes undoing it after the...

![Image](https://github.com/user-attachments/assets/05535145-5576-490d-8703-03433cf01dcd) We use a npm patch ```diff diff --git a/node_modules/emoji-mart/dist/module.js b/node_modules/emoji-mart/dist/module.js index d6ac049..75d7227 100644 --- a/node_modules/emoji-mart/dist/module.js +++ b/node_modules/emoji-mart/dist/module.js @@ -2340,6 +2340,7 @@ class $89bd6bb200cc8fef$export$2e2bcd8739ae039 extends (0, $fb96b826c0c5f37a$exp /*#__PURE__*/ (0, $bd9dd35321b03dd4$export$34b9dba7ce09269b)("div",...

Here it is: https://github.com/deepgram/deepgram-go-sdk/pull/283

Turned out to be easy to add special case code for processing links. The rest of the test suite continues to pass. Please have a look :pray: https://github.com/facebook/lexical/pull/5149

Oh interesting, `createTextFormatTransformersIndex` does indeed add a negative lookbehind for escaping. I'm not sure why it's not working at this point.

OK, it's the switch here that adds the negative assertion depending on userAgent. It turns out my Jest test is classified as IS_APPLE_WEBKIT (user agent "Mozilla/5.0 (linux) AppleWebKit/537.36 (KHTML, like...