mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 21:47:38 +03:00
fix(mathjax): fix mathjax script route
also change the location of mathjax resources. and clean up docs
This commit is contained in:
parent
970b224e7c
commit
055eee6650
30 changed files with 7 additions and 38 deletions
|
@ -136,10 +136,6 @@ From [their privacy policy](https://www.quora.com/about/privacy)
|
|||
|
||||
A key called 'theme' is stored in local storage provided by your browser to store your theme preference should you override the default theme. To prevent this behaviour, either disable JavaScript or local storage for Quetre.
|
||||
|
||||
- Data collected by other services
|
||||
|
||||
As Quetre connects to 'cdn.jsdelivr.net' for MathJax library, jsdelivr might log some data. So, follow due precaution. Using a VPN might be a good idea. Or even better, consider hosting your own instance.
|
||||
|
||||
---
|
||||
|
||||
## FAQs
|
||||
|
@ -156,10 +152,6 @@ From [their privacy policy](https://www.quora.com/about/privacy)
|
|||
|
||||
I'm working to implement them soon. Keep an eye on [To-Do list](#to-do).
|
||||
|
||||
- Why is the website connecting to 'cdn.jsdelivr.net'?
|
||||
|
||||
It is for an open source library – [Mathjax](https://www.mathjax.org/) – which is used to display math eqations nicely. If I get enough time, I'll include it locally.
|
||||
|
||||
- Why are some math equations showing up weirdly?
|
||||
|
||||
If you're browsing with JavaScript disabled, then the Mathjax library isn't able to load and format tex equations. I'd recommend to enable JavaScript for it since there's no other way to show them in the browser. Even Quora uses Mathjax.
|
||||
|
|
3
app.js
3
app.js
|
@ -20,10 +20,9 @@ const app = express();
|
|||
// 1. IMPORTANT MIDDLWARES
|
||||
app.use(compression()); // compressing responses
|
||||
app.use(
|
||||
helmet({
|
||||
helmet({
|
||||
contentSecurityPolicy: {
|
||||
directives: {
|
||||
'script-src': ["'self'"],
|
||||
'block-all-mixed-content': null, // deprecated.
|
||||
'upgrade-insecure-requests': process.env.NO_UPGRADE ? null : [],
|
||||
},
|
||||
|
|
|
@ -48,3 +48,8 @@ btnTheme.addEventListener('click', () => {
|
|||
if (userPrefersTheme) setTheme(userPrefersTheme);
|
||||
else if (browserPrefersDarkTheme) setTheme('dark');
|
||||
})();
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// MATHJAX CONFIG
|
||||
////////////////////////////////////////////////////////
|
||||
window.MathJax = { options: { enableMenu: false } };
|
||||
|
|
|
@ -50,6 +50,6 @@ html(lang='en')
|
|||
if someAnswerContainsMath
|
||||
script#MathJax-script(
|
||||
type='text/javascript',
|
||||
src='/public/js/mathjax/tex-chtml.js',
|
||||
src='/mathjax/tex-chtml.js',
|
||||
async
|
||||
)
|
||||
|
|
|
@ -31,7 +31,3 @@ block content
|
|||
summary.faqs__question Data stored locally in your browser
|
||||
svg.faqs__icon: use(href='/misc/sprite.svg#icon-open')
|
||||
p.faqs__answer A key called 'theme' is stored in local storage provided by your browser to store your theme preference should you override the default theme. To prevent this behaviour, either disable JavaScript or local storage for Quetre.
|
||||
details.faqs__faq
|
||||
summary.faqs__question Data collected by other services
|
||||
svg.faqs__icon: use(href='/misc/sprite.svg#icon-open')
|
||||
p.faqs__answer As Quetre connects to 'cdn.jsdelivr.net' for MathJax library, jsdelivr might log some data. So, follow due precaution. Using a VPN might be a good idea. Or even better, consider hosting your own instance.
|
||||
|
|
|
@ -141,26 +141,3 @@ body {
|
|||
@include focus-rules;
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// FOR MATHJAX
|
||||
////////////////////////////////////////////////////////
|
||||
mjx-container.MathJax {
|
||||
pointer-events: none;
|
||||
}
|
||||
/*
|
||||
.CtxtMenu_ContextMenu,
|
||||
.CtxtMenu_Info {
|
||||
background-color: var(--clr-base-bg) !important;
|
||||
font-family: inherit !important;
|
||||
color: inherit !important;
|
||||
}
|
||||
.CtxtMenu_InfoTitle,
|
||||
.CtxtMenu_InfoSignature,
|
||||
.CtxtMenu_MenuClose .CtxtMenu_InfoClose,
|
||||
.CtxtMenu_InfoContent {
|
||||
font-family: inherit !important;
|
||||
background: inherit !important;
|
||||
color: inherit !important;
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue