Spaces:
Running on Zero
Running on Zero
Fix: add missing marked.js and Prism.js CDN scripts to head
Browse files- index.html +11 -0
index.html
CHANGED
|
@@ -15,6 +15,17 @@
|
|
| 15 |
|
| 16 |
<!-- Prism.js Tomorrow Theme for Code Highlighting -->
|
| 17 |
<link href="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
<!-- MathJax Configuration for LaTeX Math -->
|
| 20 |
<script>
|
|
|
|
| 15 |
|
| 16 |
<!-- Prism.js Tomorrow Theme for Code Highlighting -->
|
| 17 |
<link href="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet">
|
| 18 |
+
|
| 19 |
+
<!-- Marked.js for Markdown rendering -->
|
| 20 |
+
<script src="https://cdn.jsdelivr.net/npm/marked@9.1.6/marked.min.js"></script>
|
| 21 |
+
|
| 22 |
+
<!-- Prism.js core + common languages for syntax highlighting -->
|
| 23 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/prism.min.js"></script>
|
| 24 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-python.min.js"></script>
|
| 25 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-javascript.min.js"></script>
|
| 26 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-bash.min.js"></script>
|
| 27 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-cpp.min.js"></script>
|
| 28 |
+
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-java.min.js"></script>
|
| 29 |
|
| 30 |
<!-- MathJax Configuration for LaTeX Math -->
|
| 31 |
<script>
|