Adam Fraser
Adam Fraser
Seconded. I'm rendering equations inline using Entities over a single character. Calling `Entity.mergeData(...)` to update the equation when it's modified in an editor actually updates the editorState the way I...
@kevinguard @maerzhase @jc4p I'm still manually forcing the update of the equation. It's hacky but not terrible since I couple `forceUpdateEquation()` with the `InlineMath` component. Here's the usage in our...
@kevinguard Yes, the event is triggered there and listened to by this line: ``` on(`update-equation-${this.props.entityKey}`, () => this.forceUpdate()) ``` Note that each unique equation binds to it's own unique event...
@jan4984 @kevinguard I'm using MathJax with this config: ``` MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { ignoreClass: "ignore_math", processClass: "process_math", inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"]...
@kevinguard It sounds like the problem you're having is related to the entity being associated with more than one character in the actual document. I'm pretty sure we just decorate...
+1
@MaffooBristol The text scales with the dev tools window. ⌘- will scale it down when the dev tools window is in focus. (Note: strangely ⌘- will also scale the web...
I'd love to have this feature back as well.
@johnboxall same... looks like this might help us: https://github.com/SalesforceCommerceCloud/pwa-kit/issues/1523