|
|
@@ -6,20 +6,35 @@
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
<meta name="description" content="Description">
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
+ <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
|
<style>
|
|
|
- body {
|
|
|
- margin: 0; /* Reset default margin */
|
|
|
- }
|
|
|
- iframe {
|
|
|
- display: block; /* iframes are inline by default */
|
|
|
- background: #000;
|
|
|
- border: none; /* Reset default border */
|
|
|
- height: 100vh; /* Viewport-relative units */
|
|
|
- width: 100vw;
|
|
|
+ .katex-display > .katex {
|
|
|
+ max-width: 100%;
|
|
|
+ overflow-x: auto;
|
|
|
+ overflow-y: hidden;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
-<iframe src="https://raw.githubusercontent.com/datawhalechina/pumpkin-book/master/pdf/pumpkin_book_1.9.9.pdf"></iframe>
|
|
|
+ <div id="app"></div>
|
|
|
+ <script>
|
|
|
+ window.$docsify = {
|
|
|
+ name: '南瓜书PumpkinBook',
|
|
|
+ loadSidebar: true,
|
|
|
+ subMaxLevel: 2,
|
|
|
+ alias: {
|
|
|
+ '/.*/_sidebar.md': '/_sidebar.md'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <!-- CDN files for docsify-katex -->
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.js"></script>
|
|
|
+ <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css" />
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/marked@3"></script>
|
|
|
+
|
|
|
+ <!-- CDN files for docsify-katex -->
|
|
|
+ <script src="//cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
|
|
|
+ <!-- Put them above docsify.min.js -->
|
|
|
+ <script src="//cdn.jsdelivr.net/npm/docsify@latest/lib/docsify.min.js"></script>
|
|
|
</body>
|
|
|
</html>
|