@freemo MathJax issue: https://qoto.org/web/statuses/107122108820756990 renders as lots of whitespace and broken text in 3 column view for me. Screenshot attached.
When I look at the DOM, I see lots of spans with font size of 800%~900%.
@robryk This is strange. At first when it loads it actually renders fine... after a few seconds it under redender and adds text inline in the message about a rendering error (doesnt say what)... then a few seconds later (and only after a few refreshes) do I get the white space version you see.
Did it behave that way for you?
As far as I can get its a crosss domain scripting error, so i will need to bring the mathjax files onto the local domain I guess.
@freemo For me it never actually displays a rendered version even for a moment, but sometimes (when I refresh the whole page) it displays the raw, unrendered version instead, and that version is not replaced by anything for at least ~30s.
@robryk indeed it is, yea. Thanks. I will address it in the next code update.
@freemo That's caused by qoto's CSP:
```
content-security-policy
base-uri 'none'; default-src 'none'; frame-ancestors 'none'; font-src 'self' https://qoto.org https://maxcdn.bootstrapcdn.com; img-src 'self' https: data: blob: https://qoto.org; style-src 'self' https://qoto.org https://maxcdn.bootstrapcdn.com https://miy.pw https://hcaptcha.com https://*.hcaptcha.com 'nonce-/wSZXEg7p+TWzLScbGBBUA=='; media-src 'self' https: data: https://qoto.org; frame-src 'self' https: https://hcaptcha.com https://*.hcaptcha.com; manifest-src 'self' https://qoto.org; connect-src 'self' data: blob: https://qoto.org https://storage.gra.cloud.ovh.net wss://qoto.org; script-src 'self' https://qoto.org https://maxcdn.bootstrapcdn.com https://hcaptcha.com https://*.hcaptcha.com; child-src 'self' blob: https://qoto.org; worker-src 'self' blob: https://qoto.org
```
That you can just change. If it's really that MathJax is loading something from somewhere else, and you find that acceptable, then adding that somewhere else to style-src would work.