|
4 | 4 | <meta charset="utf-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> |
6 | 6 | <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"> |
15 | 10 | <title>RealMathModel — Blog</title> |
16 | 11 |
|
17 | 12 | <!-- FontAwesome --> |
18 | 13 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer"> |
19 | 14 | <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"> |
20 | 15 | <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"> |
21 | 16 |
|
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> |
31 | 21 |
|
32 | 22 | <style> |
33 | 23 | :root{ |
|
0 commit comments