Skip to content

Commit c0c2946

Browse files
blog
1 parent e3b05a4 commit c0c2946

1 file changed

Lines changed: 7 additions & 17 deletions

File tree

blog.html

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,20 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
66
<meta name="theme-color" content="#0B1220">
7-
<meta http-equiv="Content-Security-Policy" content="
8-
default-src 'self';
9-
script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://cdnjs.cloudflare.com;
10-
style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com;
11-
font-src 'self' https://cdnjs.cloudflare.com data:;
12-
img-src 'self' data:;
13-
connect-src 'self';
14-
">
7+
<meta name="apple-mobile-web-app-capable" content="yes">
8+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
9+
<meta name="apple-mobile-web-app-title" content="Blog">
1510
<title>RealMathModel — Blog</title>
1611

1712
<!-- FontAwesome -->
1813
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer">
1914
<link rel="apple-touch-icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Crect width='180' height='180' rx='38' fill='%230B1220'/%3E%3Ctext x='26' y='118' font-family='monospace' font-size='62' fill='%23E0B23C'%3E%26gt;_%3C/text%3E%3C/svg%3E">
2015
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect width='32' height='32' rx='7' fill='%230B1220'/%3E%3Ctext x='4' y='23' font-family='monospace' font-size='18' fill='%23E0B23C'%3E%26gt;_%3C/text%3E%3C/svg%3E">
2116

22-
<!-- MathJax -->
23-
<script>
24-
window.MathJax = {
25-
tex: { inlineMath: [['$','$']], displayMath: [['$$','$$']], processEscapes: true },
26-
options: { skipHtmlTags: ['script','noscript','style','textarea','pre'] },
27-
startup: { typeset: false }
28-
};
29-
</script>
30-
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" async></script>
17+
<!-- KaTeX (CSP-safe: uses NO eval / new Function, unlike MathJax) -->
18+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" crossorigin="anonymous" referrerpolicy="no-referrer">
19+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
20+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
3121

3222
<style>
3323
:root{

0 commit comments

Comments
 (0)