PY-72435 Jupyter(fix): MathJax is rendered incorrect for superscript

GitOrigin-RevId: 1b1f788e67056689315fecf9d944f03a778eedf7
This commit is contained in:
Nikita.Ashihmin
2024-05-16 23:28:12 +04:00
committed by intellij-monorepo-bot
parent 58af4f12d2
commit a775ce9a23

View File

@@ -25,7 +25,7 @@ import java.nio.file.Path
abstract class JupyterCefHttpHandlerBase(private val absolutePathFiles: Collection<String> = emptyList()) : HttpRequestHandler() {
companion object {
private val allowedTypes = setOf("css", "js", "html", "svg", "woff2", "ttf")
private val allowedTypes = setOf("css", "js", "html", "svg", "woff", "woff2", "ttf")
private const val JUPYTER_HTTP_URI = "jupyter"
private const val prefix = "/$JUPYTER_HTTP_URI"