You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue in displaying KaTeX formula. Digging deep I found the issue with this CSS code snippet .sun-editor-editable :not(.se-code-language .katex) span
This does not have any issue with devices other than Apple, for all browsers on iOS and Safari for macOS. Apple supports its browser to have concatenation in :not whereas no other browser supports this right now.
Removing this snippet solved the problem for me. Not sure what this code actually does.
The text was updated successfully, but these errors were encountered:
There is an issue in displaying KaTeX formula. Digging deep I found the issue with this CSS code snippet
.sun-editor-editable :not(.se-code-language .katex) span
This does not have any issue with devices other than Apple, for all browsers on iOS and Safari for macOS. Apple supports its browser to have concatenation in
:not
whereas no other browser supports this right now.Removing this snippet solved the problem for me. Not sure what this code actually does.
The text was updated successfully, but these errors were encountered: